最初の例:
UriBuilder.fromUri("http://localhost")
.queryParam("foo", "test")
.clone()
.build()
// equals to: "http://localhost/?foo=test"
2 番目の例:
UriBuilder.fromUri("http://localhost")
.replaceQueryParam("foo", "test")
.clone()
.build()
// equals to: "http://localhost/"
このようになるべきですか、それとも欠陥ですか(Jersey 1.11で)?