我在尝试将旧的 ERX 休息路线移植到 Jerey/JAX-RX 时遇到了问题。
我正在尝试做这样的事情:
@Path("/v0/user")
@Controller
public class UserRouteController {
@GET
public Response getAllUsers(){
...
}
@GET
@Path("/{name}")
public Response getUserWithName(@PathParam("name") String name){
...
}
@GET
@Path(":accessibleWithNoRestriction")
public Response getUsersAccessibleWithNoRestriction(){
...
}
@GET
@Path(":withAdminStatus")
public Response getUsersWithAdminStatus(){
...
}
但是,泽西岛不想匹配我的 http 请求。
blahblah.com/v0/user:accessibleWithNoRestriction
我收到“不允许方法”响应。