Overview
-
The class must be decorated with the
@Pathannotation.The specified path is the root URI for all of the resources implemented by the service. If the root resource class specifies that its path is
widgetsand one of its methods implements theGETverb, then aGETonwidgetsinvokes that method. If a sub-resource specifies that its URI is{id}, then the full URI template for the sub-resource iswidgets/{id}and it will handle requests made to URIs likewidgets/12andwidgets/42.
-
The class must have a public constructor for the runtime to invoke.
-
At least one of the classes methods must either be decorated with an HTTP verb annotation or the
@Pathannotation.
Example 2.3 shows a root resource class that provides access to a sub-resource.
Example 2.3. Root resource class
package demo.jaxrs.server; import javax.ws.rs.DELETE; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.QueryParam; import javax.ws.rs.core.Response; @Path("/customerservice/") public class CustomerService { public CustomerService() { ... } @GET public Customer getCustomer(@QueryParam("id") String id) { ... } @DELETE public Response deleteCustomer(@QueryParam("id") String id) { ... } @PUT public Response updateCustomer(Customer customer) { ... } @POST public Response addCustomer(Customer customer) { ... } @Path("/orders/{orderId}/") public Order getOrder(@PathParam("orderId") String orderId) { ... } }
The class in Example 2.3 meets all of the requirements for a root resource class.
|
The class is decorated with the |
|
|
The class has a public constructor. In this case the no argument constructor is used for simplicity. |
|
|
The class implements each of the four HTTP verbs for the resource. |
|
|
The class also provides access to a sub-resource through the For more information on implementing sub-resources see Working with sub-resources. |