Skip to content Skip to sidebar Skip to footer

Android Spring Jackson Mapping: Noclassdeffounderror

i'm trying to let my android application function as a REST Client. Basically i followed this example: https://github.com/SpringSource/spring-android-samples/tree/master/spring-and

Solution 1:

If you get NoClassDefFoundError during Runtime, then I suspect you did not include the .jar files to work at runtime. You have to check the checkbox for each .jar like this:

enter image description here

Solution 2:

The solution to the problem was (as Selvin stated in his comment) to include the full jackson instead of the jackson mini library. Thanks again Selvin.

Post a Comment for "Android Spring Jackson Mapping: Noclassdeffounderror"