我正在尝试使用以下构造
@ApplicationPath("app")
@Path("api/{userid}/model")
public class ModelService
{
@Get
@Path("{modelid: (.*)?}")
public Response removePreProcessor(@PathParam("userid") String sUserId, @PathParam("preprocessorid") String sPreProcessorId)
{
return Response.build();
}
}
我无法访问以下两个 REST URL
GET http://localhost:8080/XXXX/app/api/xyz/model
GET http://localhost:8080/XXXX/app/api/xyz/model/123
让我知道我做错了什么
-提前致谢