Saved Bookmarks
| 1. |
Define RESTful Root Resource Classes in the JAX-RS API? |
Answer»
Example: import javax.ws.rs.Path;/*** InterviewBitService is a root resource class that is exposed at 'resource_service' path*/@Path('resource_service')public class InterviewBitService { // DEFINED methods} |
|