gpt4 book ai didi

jsp - 欢迎文件配置替代 web.xml

转载 作者:行者123 更新时间:2023-12-04 12:52:14 27 4
gpt4 key购买 nike

在没有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 文件的情况下完成吗?

另见:

https://stackoverflow.com/a/19317470/262852

更新:

我补充说:

<?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>

作为 web.xml 并且它工作正常 - 但想要在没有 xml 的情况下完成相同的结果。

最佳答案

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

如您所见,没有专门的注释来定义欢迎文件列表,也请引用这个答案here .

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

如果你在 tomcat 服务器上,还要检查这个答案 here .

希望对你有帮助

关于jsp - 欢迎文件配置替代 web.xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28087830/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com