在resteasy中@pathparam和@QueryParam之间的区别

时间:2012-09-18 11:00:50

标签: java-ee-6

我是开发Resteasy的新人。我不知道@pathparam和@Queryparam之间的区别。哪一个最好?

1 个答案:

答案 0 :(得分:0)

@PathParam注释将路径段的值绑定到资源方法参数。如果你@Path(“login / {zip}”),HTTP GET如http://server:port/login/12345,@ PathParam(“zip”)是12345

@QueryParam注释将路径段的值绑定到资源方法参数。如果你@Path(“登录”),HTTP GET如http://server:port/login?id=12345,@ QueryParam(“id”)是12345