使用 UriBuilder 在构建器 URI 中留下一些 {template}

发布于 2024-11-10 05:32:38 字数 273 浏览 2 评论 0原文

Jersey UriBuilder可以替换一个URI中的所有模板:

UriBuilder.fromResource(this.getClass()).path("{id}/{op}").build(12, "buy")

在客户端,这正是我们想要的;在服务器端,在某些情况下,我们希望保持某些模板不变(以通知客户端 URI 依赖于它,它必须用值填充它)。

在不提供所有模板的情况下构建 URI 会引发异常。那么,还有另一种方法可以保持某些模板不变吗?

Jersey UriBuilder can replace all the templates in a URI:

UriBuilder.fromResource(this.getClass()).path("{id}/{op}").build(12, "buy")

On the client side, it is exactly what we want ; On the server side, in some cases, we want to keep some templates unchanged (to inform the client that the URI depends on it, that it will have to fill it with values).

Building a URI without giving all template throws an exception. So, is there another way to leave some template unchanged?

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

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

发布评论

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

评论(1

漆黑的白昼 2024-11-17 05:32:38

我认为正确的方法是调用#toTemplate。这将创建一个模板字符串。我认为具有未解析模板参数的 URI 无效。这是一个示例:

UriBuilder.fromResource(this.getClass()).path("{id}/{op}").toTemplate();

这将保留模板占位符。

I believe the proper way to do this is to call #toTemplate. This creates a template string. I believe that a URI that has unresolved template parameters is not valid. Here's an example:

UriBuilder.fromResource(this.getClass()).path("{id}/{op}").toTemplate();

This will preserve the template place holders.

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