我正在使用 Resteasy 2.3.5。当我在浏览器中请求其 URL 时,永远不会调用以下@POST
带注释的方法:http://localhost:8080/MyApp/rest/echo/foobar
@POST
@Path("/echo/{msg}")
@Produces("text/plain; charset=UTF-8")
public String echo(@PathParam("msg") final String msg) {
return msg;
}
但是,当我替换它时@POST
,@GET
它工作得很好(浏览器返回foobar
)。怎么了?