Hi I am currently using the JodaTime library in my NetBeans restful web services on GlassFish Server using Jackson libraries.

I get a java.lang.NoClassDefFoundError for org/joda/time/ReadablePartial when I try to create an instance of a class that uses the JodaTime library in one of the Resource files. E.g:

In the studentResource file:

     Controller c = new Controller();

Where the Controller class imports and uses JodaTime libraries

I have checked that the libraries I needed are in the project. In fact, if I run a separate project outside of the restful web services, everything runs smoothly. Is there an additional classpath issue that I have to address?

link|improve this question

Did you check you don't have two Jars available at runtime? – thinksteep Jan 12 at 17:20
Ah how do I check for that? – JavaLava Jan 13 at 10:02
feedback

1 Answer

up vote 0 down vote accepted

Ok I found the solution. Apparently all I needed to do was to move the jar file up in the list of libraries/jar files. I do that in the library tab in the project's properties. More specifically, the jar file has to be moved above the REST libraries.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.