Jersey REST 中有多个基本路径?

发布于 2024-12-05 09:04:23 字数 250 浏览 1 评论 0原文

我正在使用的 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 技术交流群。

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

发布评论

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

评论(1

蓝颜夕 2024-12-12 09:04:23

只需在 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.

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