在jersey-1应用程序中,我有一个注释为:
的资源@GET @Path("/root/{someID}/bar")
public FooBar getFooBar(@PathParam("someID") String fooID) {
...
}
@GET @Path("/root/{someID}/baz")
public FooBaz getFooBaz(@PathParam("someID") String fooID) {
...
}
我在启动时遇到错误
Illegal URI template for sub-resource method ... getFooBar(...): Illegal character '/'
在@PathParams
之后使用尾随数据是否合法?
答案 0 :(得分:0)
试试这个:
@GET @Path("/root/{someID}/bar/{bar}")