Jersey Path Param:多个反斜杠分隔的参数

时间:2014-05-13 19:16:26

标签: java rest jersey jersey-2.0 path-parameter

@Path("/assetViewCount/{path}")

上面的注释可用于将 myValue 转换为路径以获取类似于/ assetViewCount / myValue的URL。

如何从路径 / assetViewCount / myValue / nextValue 获取 myValue / nextValue >

2 个答案:

答案 0 :(得分:1)

实际上我找到了我的问题的解决方案,在注释之后将/ assetViewCount /之后的内容提供给{path}

@Path("/assetViewCount/{path:.*}")

答案 1 :(得分:0)

您可以在Path中使用嵌入参数,如下所示:

@Path("/assetViewCount/{path}/nextValue")