@GET
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Path("/categories")
public Response getAllCategories(@QueryParam(value = "code") String country_code) {
return userService.getAllCategories(country_code);
}
我的网址:" / user / categories?code = + 91"
如何提取请求参数" + 91"在RESTful Web服务中。
答案 0 :(得分:0)
@QueryParam
是JAX-RS。如果要使用Spring,则相应的注释将为@RequestParam
:
public Response getAllCategories(@RequestParam("code") String country_code) {
...
}
但当然,@Path
等也不是Spring,所以也许你应该问自己是否真的想要使用Spring ......