We are developing a restful api using jersey (1.9.1) and tomcat 5.5. A given resource is identified with a urn and we would like to address a specific instance of that resource. In order to achieve this, we used the following code:
@Path("/XXXs")
public interface XXXResource {
@GET
@Path("{id}")
@Produces({ MediaType.APPLICATION_JSON })
XXXInfo getXXX(@PathParam("id") String id);
}
目的是利用以下简称处理这一资源:
The decoded path param value should be:
http://ns.something.com/XXX/2 然而,当我使用加密机提出申请时,我从目录上获得了不实的要求信息。 因此,我的问题是: 就在这样的情况下,我改变了方法的签字,以便参数从胎盘中提取,并且是有效的,但我想参数是路上的一部分。 感谢。