运行javaweb项目时显示404
原因:未设置默认首页(如果有jsp文件)
在WEB-INF文件夹中新建web.xml文件,加入以下代码
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>book-demo</display-name>
<welcome-file-list>
<welcome-file>zhuce.jsp</welcome-file>
</welcome-file-list>
</web-app>