IDEA 配置web.xml时出现错误 url-pattern标签定义文件访问路径404

今天上课讲了servlet的url-pattern标签,老师的web.xml配置文件的代码是这样的



  shxt01
 
      IndexServlet
      com.shxt.servlet.IndexServlet
 

 
    IndexServlet
    /Index01
    /Index02
    /Index03
 

  
 
    index.html
    index.htm
    index.jsp
    default.html
    default.htm
    default.jsp
 


我照着写了之后发现localhost有小猫,但是输入http://localhost:8080/shxt01/index01之后页面就报404错误,找了许久原因,发现是因为我用的IDEA没有shxt01这一句,这一句是eclipse的配置文件自带的,在我的idea中要把这一句去掉,直接访问http://localhost:8080/index01即可

这个问题可能太基础,找了一晚上没有答案,故记录如下,感谢https://blog.csdn.net/WinstonLau/article/details/80239271的讲解,让我发现了原因!

你可能感兴趣的:(IDEA 配置web.xml时出现错误 url-pattern标签定义文件访问路径404)