一图街千惑额
在项目中WEB-INF中的web.xml文件中配置项目的默认启动页面。web.xml
是个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"> </web-app>
最开始是这样的的我们加入配置
<welcome-file-list> <welcome-file>default.jsp</welcome-file> <welcome-file>default.html</welcome-file> </welcome-file-list>
完整配置
<?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>default.jsp</welcome-file> <welcome-file>default.html</welcome-file> </welcome-file-list> </web-app>