标签:报错 XML lan 方案 ext csdn 新建 创建 404错误
操作完上一步的小伙伴弹出浏览器可能会报404错误,,那是因为你web.xml没有配置欢迎页,找不到欢迎页,所以404
Web.xml中添加
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
新建index.jsp,编写Hello word
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>
标签:报错 XML lan 方案 ext csdn 新建 创建 404错误
原文地址:http://www.cnblogs.com/fengli9998/p/7095897.html