使用 UriBuilder 在构建器 URI 中留下一些 {template}
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为正确的方法是调用#toTemplate。这将创建一个模板字符串。我认为具有未解析模板参数的 URI 无效。这是一个示例:
这将保留模板占位符。
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:
This will preserve the template place holders.