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

上面的注释可用于将myValue 检索到/assetViewCount/myValue 等 url 的路径中。

如何从路径中的/assetViewCount/myValue/nextValue获取myValue/ nextValue

4

2 回答 2

1

实际上我找到了我的问题的解决方案,下面的注释给出了 /assetViewCount/ 到 {path} 之后的任何内容

@Path("/assetViewCount/{path:.*}")
于 2014-05-14T07:46:25.680 回答
0

您可以像这样在 Path 中使用嵌入式参数:

@Path("/assetViewCount/{path}/nextValue")
于 2014-05-14T06:09:49.907 回答