修改web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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_4_0.xsd"
version="4.0">
<!--修改默认主页-->
<welcome-file-list>
<welcome-file>/news/news.html</welcome-file>
</welcome-file-list>
</web-app>

文章详细介绍了如何修改web.xml文件,以设置JavaEEweb应用程序的默认欢迎页面为/news/news.html。此过程涉及到XML配置和web-app的版本管理。
1823

被折叠的 条评论
为什么被折叠?



