从REST中的资源路径获取占位符值?

时间:2014-01-09 13:38:33

标签: java web-services rest java-ee-7

我正在使用Jersey RESTful Web服务。我有以下资源。

@Path("/banker/{location}")
@Component
public class BankResource{  

    @GET
    @Path("/{id}")
    @Produces({MediaType.APPLICATION_XML})
    @Override
    public Response getBankerByID(@PathParam("id") String id) {

          //some logic

      }


}

在上面的课程中,我如何获得 {location} 的价值?因为基于 {location} 值,我需要做一些处理。是否有可能获得其价值?

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用@PathParam获取位置值,并将其映射到方法参数,如下所示。 `

@Path("/banker/{location}")
@Component
public class BankResource{  

    @GET
    @Path("/{id}")
    @Produces({MediaType.APPLICATION_XML})
    @Override
    public Response getBankerByID(@PathParam("location") String location,
@PathParam("id") String id) {
   //your code here
}

`