jsp 欢迎文件未调用

发布于 2024-10-17 02:23:34 字数 878 浏览 0 评论 0原文

我有一个 JSP Web 应用程序部署到 tomcat。应用程序的 url 为 http://servername/app

web.xml 包含welcome-file-list,如下所示。

<?xml version="1.0" encoding="UTF-8"?>
    <web-app id="mobile" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
    </web-app>

现在,当我们访问 http://servername/app 时,应用程序将无法访问。但是,如果我们以 http://servername/app/ 的形式访问 URL,则可以访问该应用程序。

我需要应用程序是没有试用/字符的应用程序。

请帮忙!

I have a JSP web application deployed to tomcat. The url of the application is http://servername/app

The web.xml contains welcome-file-list as below.

<?xml version="1.0" encoding="UTF-8"?>
    <web-app id="mobile" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
    </web-app>

Now, when we access http://servername/app the application is not accessible. But, if we access the url as http://servername/app/, then the application is accessible.

I need the application to be application without the trialing / character.

Please help!

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

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

发布评论

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

评论(1

救赎№ 2024-10-24 02:23:34

当您在 / 上映射了一个 servlet,该 servlet 接管了 servletcontainer 的内置默认 servlet(负责转到正确的根路径)的工作时,就会发生这种情况。因此,要么修复您的 servlet 以执行相同的操作,要么将其映射到更具体的 url 模式。

This can happen when you've a servlet mapped on / which is taking over the job of the servletcontainer's builtin default servlet who is the one responsible for going to the right root path. So either fix your servlet to do the same or map it on a more specific url pattern.

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