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
Post a Comment