编程语言
首页 > 编程语言> > java – RESTEASY002142:多个资源方法匹配请求

java – RESTEASY002142:多个资源方法匹配请求

作者:互联网

我正在关注两个完全不同的URL,我无法解释原因:

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")

解决方法:

发生警告是因为您的请求字符串可以匹配两个路径模板.请求“devices / distinctValues / 3”

>匹配customerId =“3”中的devices / distinctValues / {customerId}
>匹配customerId =“distinctValues”和deviceIds =“3”中的devices / {customerId} / {deviceIds}.

There is no type resolution并且由于您的请求是String,因此无法告诉customerId它不能接受“distinctValues”.

作为一种解决方法,您可以指定链接问题中显示的正则表达式,或使用RESTEasy proxy framework,它基本上是服务器(您的JAX-RS资源)和客户端使用的共享接口,然后您有一个类型的公共语言解析度.请注意,文档示例中存在拼写错误.

标签:java,rest,jax-rs,resteasy
来源: https://codeday.me/bug/20190727/1551213.html