java – 它是JAX-RS中UriBuilder的正确行为吗?

第一个例子:

UriBuilder.fromUri("http://localhost")
  .queryParam("foo", "test")
  .clone()
  .build()
// equals to: "http://localhost/?foo=test"

第二个例子:

UriBuilder.fromUri("http://localhost")
  .replaceQueryParam("foo", "test")
  .clone()
  .build()
// equals to: "http://localhost/"

它应该是这样的还是缺陷(在Jersey 1.11中)?

解决方法:

这是泽西岛的一个缺陷,它已经修复:http://java.net/jira/browse/JERSEY-1081

上一篇:RESTful Python for Java(Jersey)开发人员


下一篇:java – 使用Maven的Spring 3.0.5使用Jersey 1.6