@Path("/assetViewCount/{path}")
上面的注释可用于将 myValue 转换为路径以获取类似于/ assetViewCount / myValue的URL。
如何从路径
/ assetViewCount / myValue / nextValue 获取 myValue / nextValue >答案 0 :(得分:1)
实际上我找到了我的问题的解决方案,在注释之后将/ assetViewCount /之后的内容提供给{path}
@Path("/assetViewCount/{path:.*}")
答案 1 :(得分:0)
您可以在Path中使用嵌入参数,如下所示:
@Path("/assetViewCount/{path}/nextValue")