JSP如何管理欢迎文件列表?

发布于 2024-10-15 02:00:07 字数 328 浏览 0 评论 0原文

如何根据其域名将用户重定向到其中一个页面?
web.xml

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>now_see_this.jsp</welcome-file>
    <welcome-file>Another.jsp</welcome-file>
</welcome-file-list>

谢谢!!!

How can i redirect users to one of the pages accordingly his domain name?
web.xml

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>now_see_this.jsp</welcome-file>
    <welcome-file>Another.jsp</welcome-file>
</welcome-file-list>

Thanks!!!

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

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

发布评论

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

评论(1

烟花易冷人易散 2024-10-22 02:00:07

您可以

  • 创建一个过滤器 (javax.servlet.Filter)
  • 将其映射到 /
  • 检查 request.getServerName() 并与预定义的列表进行比较域
  • request.getRequestDispatcher("/someIndex.jsp").forward() 取决于域。

然而,这看起来是一个奇怪的用例,因为如果用户知道其他域的索引文件(如果它们没有隐藏在WEB-INF中),他仍然能够访问它们。但在不了解您的要求的情况下,我无法提出更好的解决方案。

You can

  • make a filter (javax.servlet.Filter)
  • map it to /
  • check request.getServerName() and compare with a predefined list of domains
  • request.getRequestDispatcher("/someIndex.jsp").forward() depending on the domain.

However, it looks like a strange use-case, because the user will still be able to access the index files for other domains if he knows them (if they are not hidden in WEB-INF). But without knowing your requirements I can't suggest a better solution.

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