Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在网络服务器上处理 Java 项目。上传.war文件很顺利。例如,当我导航到网站名称时,www.example.com网站给了我一个错误;但输入www.example.com/index.jsp工作正常。我希望第二个请求与第一个请求相同。
.war
www.example.com
www.example.com/index.jsp
在 web.xml 中,您需要指定以下内容
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
并且 index.jsp 必须放在根上下文文件夹中