I have two REST URLs like:
http://myschool/student/jack //get student information.
http://myschool/student/jack?books //get student books.
Code:
@Path("student")
public class StudentResource {
@GET
@Path("{name}")
public Response getInformation(@PathParam("name") String name) {
return Response.ok(loadStudentInformation(name));
}
@GET
@Path("{name}?books") //ineffective expression
public Response getBooks(@PathParam("name") String name) {
return Response.ok(loadStudentBooks(name));
}
Jersey cannot process the second url 'http://myschool/student/jack?books', it always dispatch the incoming request which end with '?books' to the first method 'getInformation'.
I try to use regular expression like this:
@GET
@Path("{name : .*(\\?books$)}") //ineffective expression
public Response getBooks(@PathParam("name") String studentName) {
The regular expression is ineffective too, can someone please help me figure out how to implement this.
Thanks.