今天上课讲了servlet的url-pattern标签,老师的web.xml配置文件的代码是这样的
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>shxt01</display-name>
<servlet>
<servlet-name>IndexServlet</servlet-name>
<servlet-class>com.shxt.servlet.IndexServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>IndexServlet</servlet-name>
<url-pattern>/Index01</url-pattern>
<url-pattern>/Index02</url-pattern>
<url-pattern>/Index03</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
我照着写了之后发现localhost有小猫,但是输入http://localhost:8080/shxt01/index01之后页面就报404错误,找了许久原因,发现是因为我用的IDEA没有<display-name>shxt01</display-name>这一句,这一句是eclipse的配置文件自带的,在我的idea中要把这一句去掉,直接访问http://localhost:8080/index01即可
这个问题可能太基础,找了一晚上没有答案,故记录如下,感谢https://blog.youkuaiyun.com/WinstonLau/article/details/80239271的讲解,让我发现了原因!