Jersey REST 中有多个基本路径?
我正在使用的 Web 应用程序当前正在使用 REST 向 iPhone 应用程序公开功能。
所有 iPhone REST URL 的格式均为 /mobile/*。
我们现在希望提供一个 RESTful API 供公众使用。这些地址的格式类似于/rest/*。
问题是我们需要这些新的 /rest/* 地址与当前的 /mobile/* (由于向后兼容性问题而无法更改)一起工作。
不过,我不知道如何做到这一点。有什么想法吗?
The web application I'm working is currently using REST to expose functionality to a iPhone application.
All iPhone REST URLs are in the format /mobile/*.
We're now looking to provide a RESTful API for public use. These addresses will be a format like /rest/*.
The issue is we need these new /rest/* addresses to work alongside the current /mobile/* (which can't be changed due to backwards compatibility issues).
I'm having trouble seeing how this can be done, though. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在 web.xml 中配置 2 个 servlet - 一个使用 /rest/* 映射,另一个使用 /mobile/* 映射。您可以在两者中包含相同的资源。
Just configure 2 servlets in your web.xml - one with /rest/* mapping and the other one with /mobile/* mapping. You can include the same resources in both.