请参阅以下代码。 / hello / from / JohnDoe将命中sayPlainTextHello方法。当访问“/ hello / from / JohnDoe”时,我想在日志中存储/ hello / from / {name}的映射路径。请注意,我无法修改以下代码,但可以向应用添加过滤器等。如何获取映射路径“/ hello / from / {name}”?
@Path("hello")
public class GenericResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
@Path("/from/{name}")
public String sayPlainTextHello(@PathParam("name") String fromName) {
return "Hello Jersey - " + fromName;
}
}