Jersey REST The ResourceConfig instance does not contain any root resource classes

I had the same error message and solved it by modifying my web.xml file. Make sure it has this in it:
<init-param>
   <param-name>com.sun.jersey.config.property.packages</param-name>
   <param-value>your.package.name.here</param-value>
</init-param>

Comments

Popular posts from this blog

How to draw an overlay on a SurfaceView used by Camera on Android?

Create EditText with dropdown in android

Android TCP Connection Chat application