Resteasy/JAX-RS URL 编码 @PATH

发布于 2024-12-05 19:21:48 字数 660 浏览 0 评论 0 原文

我正在尝试使用 Resteasy 为宁静的网络服务构建一个客户端。问题出在我的客户端代码(如下)

@Path("solr")
public interface TestClient{

    @GET
    @Path(value="select?indent...")
    @Produces("application/xml")
    ClientResponse<String> getStuff();
}

问题是 @Path 注释中的 ? 自动将 URL 编码为 %3F 。这与 此处的 javadocs 一致,但这导致我收到 404 错误。我尝试用 encode=false 这里 但这只会产生编译器错误。有没有办法覆盖或逃避这个?

I am trying to build a client for a restful webservice with Resteasy. The issue is with my client code(below)

@Path("solr")
public interface TestClient{

    @GET
    @Path(value="select?indent...")
    @Produces("application/xml")
    ClientResponse<String> getStuff();
}

The problem is that the ? in the @Path annotation is automatically URL encoded to a %3F. This is in keeping with the javadocs here, but it's causing me to get 404 errors. I tried overriding this with the encode=false here but that just creates compiler errors. Is there a way to override or escape this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

东走西顾 2024-12-12 19:21:48

为什么您认为路径中需要 ? ?看来 @QueryParam 正是您想要的。请参阅http://docs.jboss.org/ resteasy/docs/1.0.1.GA/userguide/html/RESTEasy_Client_Framework.html

Why do you think you need a ? in the Path? It seems like @QueryParam is what you'd want instead. See http://docs.jboss.org/resteasy/docs/1.0.1.GA/userguide/html/RESTEasy_Client_Framework.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文