设置什么正则表达式来@Path("<what_regex>")
捕获所有可能的路径参数深度(除了一些旨在由其他方法处理的特定路径)?
像:
/{path1}/{path1}/{path1}/{path1}/{path1}/
等等
虽然仍然映射这些:
/create
/read
/update
/delete
到其他 Jax-rs 资源方法。
@Singleton
@Path("/")
public class MyRest {
@GET
@Path({pathParam}) /* This works */
public Response getSomething(...){}
@POST
@Path("create") /* Along with this */
public Response createSomething(...){}
// and so on
}