I've got the start of a RESTful web service using JAX-RS and Jersey that exposes two resources: SessionResource and ItemResource. Only one of these, unfortunately, is exposed by the web service.
Details:
- configuration is done w/ a class that extends javax.ws.rs.core.Application (created automatically by Netbeans 7). the class doesn't contain any configuration information other than a @ApplicationPath() annotation.
- no web.xml file
Questions:
- What am I missing?
- is there value to having an application class? can i get away w/ just a web.xml file for configuration?
- sometimes i've noticed that changes made in the IDE aren't published to apache. what is the most reliable way to do so?