"Building your first app" run time errors with Eclipse-ADT - eclipse-adt

I'm working on the "Building Your First App" under Android's app creation training. I have completed all the steps, and am running the app through my Galaxy S4. It loads the first page entirely where the user enters in whatever they like, and then takes you to the second page displaying what the user typed in. Loading the second page is where things go wrong.
02-07 16:21:06.167: W/dalvikvm(21946): threadid=1: thread exiting with uncaught exception (group=0x417a4898)
02-07 16:21:06.177: E/AndroidRuntime(21946): FATAL EXCEPTION: main
02-07 16:21:06.177: E/AndroidRuntime(21946): java.lang.IllegalStateException: Could not find a method sendmessage(View) in the activity class com.example.myfirstapp.MainActivity for onClick handler on view class android.widget.Button
02-07 16:21:06.177: E/AndroidRuntime(21946): at android.view.View$1.onClick(View.java:3825)
02-07 16:21:06.177: E/AndroidRuntime(21946): at android.view.View.performClick(View.java:4475)
02-07 16:21:06.177: E/AndroidRuntime(21946): at android.view.View$PerformClick.run(View.java:18786)
02-07 16:21:06.177: E/AndroidRuntime(21946): at android.os.Handler.handleCallback(Handler.java:730)
02-07 16:21:06.177: E/AndroidRuntime(21946): at android.os.Handler.dispatchMessage(Handler.java:92)
02-07 16:21:06.177: E/AndroidRuntime(21946): at android.os.Looper.loop(Looper.java:137)
02-07 16:21:06.177: E/AndroidRuntime(21946): at android.app.ActivityThread.main(ActivityThread.java:5419)
02-07 16:21:06.177: E/AndroidRuntime(21946): at java.lang.reflect.Method.invokeNative(Native Method)
02-07 16:21:06.177: E/AndroidRuntime(21946): at java.lang.reflect.Method.invoke(Method.java:525)
02-07 16:21:06.177: E/AndroidRuntime(21946): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1187)
02-07 16:21:06.177: E/AndroidRuntime(21946): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1003)
02-07 16:21:06.177: E/AndroidRuntime(21946): at dalvik.system.NativeStart.main(Native Method)
02-07 16:21:06.177: E/AndroidRuntime(21946): Caused by: java.lang.NoSuchMethodException: sendmessage [class android.view.View]
02-07 16:21:06.177: E/AndroidRuntime(21946): at java.lang.Class.getConstructorOrMethod(Class.java:423)
02-07 16:21:06.177: E/AndroidRuntime(21946): at java.lang.Class.getMethod(Class.java:787)
02-07 16:21:06.177: E/AndroidRuntime(21946): at android.view.View$1.onClick(View.java:3818)
02-07 16:21:06.177: E/AndroidRuntime(21946): ... 11 more
I'm a little overwhelmed on where to even start alleviating this problem..
active_display_message.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="#dimen/activity_vertical_margin"
android:paddingLeft="#dimen/activity_horizontal_margin"
android:paddingRight="#dimen/activity_horizontal_margin"
android:paddingTop="#dimen/activity_vertical_margin"
tools:context=".DisplayMessageActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="#string/hello_world" />
This is the onCreate() under the DisplayMessageActivity class:
#SuppressLint("NewApi")
#Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Get the message from the intent
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
//Create the text view
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
//set the text view as the activity layout
setContentView(textView);
setContentView(R.layout.activity_display_message);
// Make sure we're running on Honeycomb or higher to use ActionBar APIs
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){
// Show the Up button in the action bar.
getActionBar().setDisplayHomeAsUpEnabled(true);
}
}

Related

Failed Resolution of R$Drawable when using a bound Java Library

I am binding the java library Material CalendarView. With a set of 12 transforms in Metadata.xml I could bind the library with 0 errors and 15 warnings. I have added Support Library v4 Component ver 23.1.1 in the binding project as the jar file had a dependency on that. Also I have ensured that all the Resource assets are included in the jar file.
When I use this library in an Android Sample like below,
var materialCalendar= new MaterialCalendarView(this);
this exception gets thrown
Failed resolution of: Lcom/prolificinteractive/materialcalendarview/R$drawable;
Java.Lang.NoClassDefFoundError: Failed resolution of: Lcom/prolificinteractive/materialcalendarview/R$drawable; ---> Java.Lang.ClassNotFoundException: Didn't find class "com.prolificinteractive.materialcalendarview.R$drawable" on path: DexPathList[[zip file "/data/app/com.fingent.materialcalendarsample-1/base.apk"],nativeLibraryDirectories=[/data/app/com.fingent.materialcalendarsample-1/lib/x86, /vendor/lib, /system/lib]]
at --- End of managed exception stack trace ---
at java.lang.ClassNotFoundException: Didn't find class "com.prolificinteractive.materialcalendarview.R$drawable" on path: DexPathList[[zip file "/data/app/com.fingent.materialcalendarsample-1/base.apk"],nativeLibraryDirectories=[/data/app/com.fingent.materialcalendarsample-1/lib/x86, /vendor/lib, /system/lib]]
at at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
at at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
at at com.prolificinteractive.materialcalendarview.MaterialCalendarView.setupChildren(MaterialCalendarView.java:358)
at at com.prolificinteractive.materialcalendarview.MaterialCalendarView.<init>(MaterialCalendarView.java:237)
at at com.prolificinteractive.materialcalendarview.MaterialCalendarView.<init>(MaterialCalendarView.java:216)
at at md56fd5622393123d59c6c51d78708f2ed2.MainActivity.n_onCreate(Native Method)
at at md56fd5622393123d59c6c51d78708f2ed2.MainActivity.onCreate(MainActivity.java:28)
at at android.app.Activity.performCreate(Activity.java:5990)
at at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
at at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278)
at at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
at at android.app.ActivityThread.access$800(ActivityThread.java:151)
at at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
at at android.os.Handler.dispatchMessage(Handler.java:102)
at at android.os.Looper.loop(Looper.java:135)
at at android.app.ActivityThread.main(ActivityThread.java:5254)
at at java.lang.reflect.Method.invoke(Native Method)
at at java.lang.reflect.Method.invoke(Method.java:372)
at at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
at Suppressed: java.lang.ClassNotFoundException: com.prolificinteractive.materialcalendarview.R$drawable
at at java.lang.Class.classForName(Native Method)
at at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
at at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
at at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
at ... 19 more
at Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
--- End of inner exception stack trace ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in /Users/builder/data/lanes/3053/a94a03b5/source/mono/external/referencesource/mscorlib/system/runtime/exceptionservices/exceptionservicescommon.cs:143
at Android.Runtime.JNIEnv.CallNonvirtualVoidMethod (IntPtr jobject, IntPtr jclass, IntPtr jmethod, Android.Runtime.JValue* parms) [0x00084] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/src/Runtime/JNIEnv.g.cs:1029
at Android.Runtime.JNIEnv.FinishCreateInstance (IntPtr instance, IntPtr jclass, IntPtr constructorId, Android.Runtime.JValue* constructorParameters) [0x0000b] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/src/Runtime/JNIEnv.cs:306
at MaterialCalendarLibrary.MaterialCalendarView..ctor (Android.Content.Context p0) [0x000c5] in /Users/fingent/Projects/MaterialCalendarLibrary/MaterialCalendarLibrary/obj/Release/generated/src/MaterialCalendarLibrary.MaterialCalendarView.cs:505
at MaterialCalendarSample.MainActivity.OnCreate (Android.OS.Bundle savedInstanceState) [0x00009] in /Users/fingent/Documents/sreeraj/workspace/Xamarin.MaterialCalendarView/MaterialCalendarSample/MainActivity.cs:17
at Android.App.Activity.n_OnCreate_Landroid_os_Bundle_ (IntPtr jnienv, IntPtr native__this, IntPtr native_savedInstanceState) [0x00011] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/platforms/android-19/src/generated/Android.App.Activity.cs:2475
at at (wrapper dynamic-method) System.Object:0b8c341c-2f19-42d5-83e9-b3a815827e69 (intptr,intptr,intptr)
at --- End of managed exception stack trace ---
at java.lang.NoClassDefFoundError: Failed resolution of: Lcom/prolificinteractive/materialcalendarview/R$drawable;
at at com.prolificinteractive.materialcalendarview.MaterialCalendarView.setupChildren(MaterialCalendarView.java:358)
at at com.prolificinteractive.materialcalendarview.MaterialCalendarView.<init>(MaterialCalendarView.java:237)
at at com.prolificinteractive.materialcalendarview.MaterialCalendarView.<init>(MaterialCalendarView.java:216)
at at md56fd5622393123d59c6c51d78708f2ed2.MainActivity.n_onCreate(Native Method)
at at md56fd5622393123d59c6c51d78708f2ed2.MainActivity.onCreate(MainActivity.java:28)
at at android.app.Activity.performCreate(Activity.java:5990)
at at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
at at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278)
at at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
at at android.app.ActivityThread.access$800(ActivityThread.java:151)
at at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
at at android.os.Handler.dispatchMessage(Handler.java:102)
at at android.os.Looper.loop(Looper.java:135)
at at android.app.ActivityThread.main(ActivityThread.java:5254)
at at java.lang.reflect.Method.invoke(Native Method)
at at java.lang.reflect.Method.invoke(Method.java:372)
at at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
at Caused by: java.lang.ClassNotFoundException: Didn't find class "com.prolificinteractive.materialcalendarview.R$drawable" on path: DexPathList[[zip file "/data/app/com.fingent.materialcalendarsample-1/base.apk"],nativeLibraryDirectories=[/data/app/com.fingent.materialcalendarsample-1/lib/x86, /vendor/lib, /system/lib]]
at at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
at at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
at ... 18 more
at Suppressed: java.lang.ClassNotFoundException: com.prolificinteractive.materialcalendarview.R$drawable
at at java.lang.Class.classForName(Native Method)
at at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
at at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
at at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
at ... 19 more
at Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
Here is the link to the project in Github Xamarin Material CalendarView
It's about missing Resources that should be attached in Material CalendarView, you need an AAR file.
Just go Maven and get latest AAR file that published by Author: http://mvnrepository.com/artifact/com.prolificinteractive/material-calendarview/1.2.0
Remove the material-calendarview.jar and drag new file material-calendarview-1.2.0.aar on your binding project, done!
A Drawable is a graphic resource and the Java exception is on the following line (from the lib your binding):
buttonPast.setImageResource(R.drawable.mcv_action_previous);
So you are missing mcv_action_previous which a PNG-based arrow located in the res/drawable-xxxhdpi/mcv_action_previous.png within the project that you are binding.
Are all the resources included? Any of your binding transformations or binding warning about resources?

i have an error in my background service and i'm using volley library

12-21 16:36:20.522 24309-24309/islamicapp.com.ranatechnology.ww.tawfiiqislamiccenter E/AndroidRuntime: FATAL EXCEPTION: main
Process: islamicapp.com.ranatechnology.ww.tawfiiqislamiccenter, PID: 24309
java.lang.OutOfMemoryError: pthread_create (stack size 16384 bytes) failed: Try again
at java.lang.VMThread.create(Native Method)
at java.lang.Thread.start(Thread.java:1029)
at com.android.volley.RequestQueue.start(RequestQueue.java:152)
at com.android.volley.toolbox.Volley.newRequestQueue(Volley.java:79)
at com.android.volley.toolbox.Volley.newRequestQueue(Volley.java:105)
at com.android.volley.toolbox.Volley.newRequestQueue(Volley.java:115)
at islamicapp.com.ranatechnology.ww.Service.NotificationService.servicestart(NotificationService.java:139)
at islamicapp.com.ranatechnology.ww.Service.NotificationService.onStartCommand(NotificationService.java:58)
at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:2712)
at android.app.ActivityThread.access$2100(ActivityThread.java:142)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1300)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5120)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:792)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:608)
at dalvik.system.NativeStart.main(Native Method)

VerifyError using Jersey Client

I have a problem with using the Jersey Client
I am using jersey-bundle-1.17.1.jar
When i try to create a Client i throw at Runtime.
Client c = Client.create();
logcat:
01-29 12:46:52.578 13862-13862/com.example.spar.navigationdrawer E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.spar.navigationdrawer, PID: 13862
java.lang.VerifyError: com/sun/jersey/core/impl/provider/entity/MimeMultipartProvider
at java.lang.Class.getDeclaredConstructors(Native Method)
at java.lang.Class.getConstructors(Class.java:508)
at com.sun.jersey.core.spi.component.ComponentConstructor.getInstance(ComponentConstructor.java:174)
at com.sun.jersey.core.spi.component.ProviderFactory.__getComponentProvider(ProviderFactory.java:166)
at com.sun.jersey.core.spi.component.ProviderFactory.getComponentProvider(ProviderFactory.java:137)
at com.sun.jersey.core.spi.component.ProviderServices.getComponent(ProviderServices.java:256)
at com.sun.jersey.core.spi.component.ProviderServices.getServices(ProviderServices.java:160)
at com.sun.jersey.core.spi.factory.MessageBodyFactory.initReaders(MessageBodyFactory.java:176)
at com.sun.jersey.core.spi.factory.MessageBodyFactory.init(MessageBodyFactory.java:162)
at com.sun.jersey.api.client.Client.init(Client.java:342)
at com.sun.jersey.api.client.Client.access$000(Client.java:118)
at com.sun.jersey.api.client.Client$1.f(Client.java:191)
at com.sun.jersey.api.client.Client$1.f(Client.java:187)
at com.sun.jersey.spi.inject.Errors.processWithErrors(Errors.java:193)
at com.sun.jersey.api.client.Client.<init>(Client.java:187)
at com.sun.jersey.api.client.Client.<init>(Client.java:159)
at com.sun.jersey.api.client.Client.create(Client.java:669)
at com.example.spar.navigationdrawer.client.ArticleClient.getArticles(ArticleClient.java:38)
at com.example.spar.navigationdrawer.MyActivity.<init>(MyActivity.java:72)
at java.lang.Class.newInstanceImpl(Native Method)
at java.lang.Class.newInstance(Class.java:1208)
at android.app.Instrumentation.newActivity(Instrumentation.java:1061)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2122)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2271)
at android.app.ActivityThread.access$800(ActivityThread.java:144)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1205)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5146)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:732)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:566)
at dalvik.system.NativeStart.main(Native Method)

No constructor found for ... (System.IntPtr, Android.Runtime.JniHandleOwnership)

In the last few days I started getting the error above.
Not here and there, but everywhere. and in places I can't even put this weird constructor in,
like the call-stack below.
I saw the answer in https://stackoverflow.com/a/10603714/106248 but I believe this is not my case. It simply started happening everwhere. especially when I put a breakpoint.
Here is an example:
10-26 15:34:58.895 E/mono-rt (13841): [ERROR] FATAL UNHANDLED EXCEPTION: System.NotSupportedException: Unable to activate instance of type Android.Views.View+IOnClickListenerImplementor from native handle 7960001d ---> System.MissingMethodException: No constructor found for Android.Views.View+IOnClickListenerImplementor::.ctor(System.IntPtr, Android.Runtime.JniHandleOwnership) ---> Java.Interop.JavaLocationException: Exception of type 'Java.Interop.JavaLocationException' was thrown.
10-26 15:34:58.895 E/mono-rt (13841): Java.Lang.Error: Exception of type 'Java.Lang.Error' was thrown.
10-26 15:34:58.895 E/mono-rt (13841):
10-26 15:34:58.895 E/mono-rt (13841): --- End of managed exception stack trace ---
10-26 15:34:58.895 E/mono-rt (13841): java.lang.Error: Java callstack:
10-26 15:34:58.895 E/mono-rt (13841): at mono.android.view.View_OnClickListenerImplementor.n_onClick(Native Method)
10-26 15:34:58.895 E/mono-rt (13841): at mono.android.view.View_OnClickListenerImplementor.onClick(View_OnClickListenerImplementor.java:29)
10-26 15:34:58.895 E/mono-rt (13841): at android.view.View.performClick(View.java:4475)
10-26 15:34:58.895 E/mono-rt (13841): at android.view.View$PerformClick.run(View.java:18786)
10-26 15:34:58.895 E/mono-rt (13841): at android.os.Handler.handleCallback(Handler.java:730)
10-26 15:34:58.895 E/mono-rt (13841): at android.os.Handler.dispatchMessage(Handler.java:92)
10-26 15:34:58.895 E/mono-rt (13841): at android.os.Looper.loop
From what I experienced, this can happens when an object is released from memory while your application is running. Then, for instance, if you go back to that page and the object needs to be recreated by Mono, you need to specify that constructor.
The John Pryor answer you are referring to should be the answer to your problem. The important part is the following :
So Mono for Android creates an instance of the appropriate type...via
the (IntPtr, JniHandleOwnership) constructor, and generates an error
if this constructor cannot be found.
Once the (in this case) TextView constructor finishes executing, the
LogTextBox's ACW constructor will execute, at which point Mono for
Android will go "aha! we've already created a C# instance for this
Java instance", and will then invoke the appropriate constructor on
the already created instance. Meaning that for a single instance, two
constructors will be executed: the (IntPtr, JniHandleOwnership)
constructor, and (later) the (Context, IAttributeSet, int)
constructor.
I'd like to be a better help, but without any code snippet it's hard to tell. Try looking in object which implements the IOnClickListenerImplementorsee if you can add the constructor in the implementation of the listener.... Good luck

0 Spring Hibernate-sessionfactory is null while trying to save employee object

Getting following error when trying to save the Employee object. Kindly help.
[stdout] (http-localhost-127.0.0.1-8082-1)
20:26:06,296 INFO [stdout] (http-localhost-127.0.0.1-8082-1)
com.javapapers.spring.Employee#1ee17a5
20:26:06,315 ERROR [stderr] (http-localhost-127.0.0.1-8082-1)
java.lang.NullPointerException
20:26:06,317 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
com.javapapers.spring.EmployeeDAOImpl.saveEmployee(EmployeeDAOImpl.java:17)
20:26:06,319 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
com.javapapers.spring.EmployeeController.employee(EmployeeController.java:41)
20:26:06,321 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
20:26:06,323 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
20:26:06,324 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
20:26:06,325 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
java.lang.reflect.Method.invoke(Unknown Source)
20:26:06,326 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.method.support.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:185)
20:26:06,326 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:126)
20:26:06,327 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:100)
20:26:06,328 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:502)
20:26:06,328 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:465)
20:26:06,329 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:80)
20:26:06,330 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:863)
20:26:06,330 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:792)
20:26:06,331 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:851)
20:26:06,332 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:756)
20:26:06,333 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:734)
20:26:06,333 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
20:26:06,334 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329)
20:26:06,334 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248)
20:26:06,335 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275)
20:26:06,335 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161)
20:26:06,336 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153)
20:26:06,337 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155)
20:26:06,337 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
20:26:06,338 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
20:26:06,338 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368)
20:26:06,339 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877)
20:26:06,339 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671)
20:26:06,340 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)
20:26:06,341 ERROR [stderr] (http-localhost-127.0.0.1-8082-1) at
java.lang.Thread.run(Unknown Source)

Resources