如何在球衣中获得映射路径

时间:2014-08-13 18:05:15

标签: jersey-1.0

请参阅以下代码。 / 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;
        }
    }

0 个答案:

没有答案