我正在关注两个完全不同的网址,我无法解释原因:
RESTEASY002142:
Multiple resource methods match request "GET /devices/distinctValues/3".
Selecting one.
Matching methods:
[public javax.ws.rs.core.Response
mypackage.DevService.getDistinctValues(int) throws java.lang.Exception,
public javax.ws.rs.core.Response
mypackage.DevRESTService.getDevice(int,java.lang.String)
throws java.lang.Exception]
此警告不应出现,因为URLS完全不同。如果有人知道为什么会这样:
两种方法的网址:
getDevice
:
@GET
@Path("devices/{customerId}/{deviceIds}")
@Produces({ "application/json" })
getDistinctValues
:
@GET
@Path("devices/distinctValues/{customerId}")
@Consumes("application/json")
@Produces("application/json")
答案 0 :(得分:7)
发生警告是因为您的请求字符串可以匹配两个路径模板。请求"devices/distinctValues/3"
devices/distinctValues/{customerId}
customerId = "3"
devices/{customerId}/{deviceIds}
和customerId = "distinctValues"
中的deviceIds = "3"
。 There is no type resolution由于您的请求是String
,因此无法告诉customerId
它无法接受"distinctValues"
。
作为一种解决方法,您可以指定链接问题中显示的正则表达式,也可以使用RESTEasy proxy framework,它基本上是服务器(您的JAX-RS资源)和客户端使用的共享接口,然后你有一个类型分辨率的共同语言。请注意,文档示例中存在拼写错误。