欢迎文件配置替代 web.xml

welcome file configuration alternative to web.xml

在没有web.xml的情况下,欢迎文件配置在哪里?

背景:

10.10 Welcome Files

Web Application developers can define an ordered list of partial URIs called welcome files in the Web application deployment descriptor.

Java Servlet Specification Version 3.0 Rev a December 2010

我正在使用 Netbeans 8,但没有意识到 web.xml 职责现在主要是通过注释完成的。但是,我似乎找不到与欢迎文件相关的注释。目前,index.html 加载,我想将其重新配置为 foo.jsp。可以在不创建 web.xml 文件的情况下完成吗?

另见:

更新:

我补充了:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>foo.jsp</welcome-file>
    </welcome-file-list>
</web-app>

as web.xml 并且它工作正常 - 但想在没有 xml.

的情况下实现相同的结果

在Servlet 3.0中,定义了几个新的注解。这些注释位于包 javax.servlet.annotation.

如您所见,没有特殊的注释来定义欢迎文件列表,也请参考这个答案here.

但请检查以下答案 here,因为它描述了一种解决方法,可以让您的欢迎文件将其重新配置为 foo.jsp。

如果您在 tomcat 服务器上,也请检查此答案 here

希望对您有所帮助