这是我的web.xml文件。
在此,我没有<servlet>
也没有<servlet-mapping>
阻止。
如果不存在,我们可以自己写吗?
<?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>letscode</display-name>
<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>
答案 0 :(得分:0)
默认情况下,Eclipse将为您处理servlet映射。如果需要,可以在项目资源管理器中进行检查。它位于Deployment descriptors-&gt; Servlet Mappings部分下。确保servlet映射在那里是正确的,这就足够了!