次の構成を使用しようとしています
@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
私がしている何が間違っているのか教えてください
-前もって感謝します