客户端可能会请求两个具有相同路径但查询字符串不同的 url:
1. /hello
2. /hello?name=Mike
如何使用 jersey 为它们各自定义两种不同的方法?
这是一个例子:
@Path("/hello")
public class HelloResource {
@Produces("text/plain")
public String justHello() {}
// how to call this method only the query string has "name"
@Produces("text/plain")
public String helloWithName() {}
}