Welcome to Yumao′s Blog.
web.xml中的welcome-file-list在设置欢迎界面时每次用index.do时会爆出404错误。在网上查找了好半天找到了解决方法。
<welcome-file-list> <welcome-file>index.do</welcome-file> </welcome-file-list>
这样子会报错。但是只要在WebRoot目录下建立一个index.do的文件即可。文件里什么都不用写。这样完全就会访问到你的Action中(当然这要你的struts.xml配置好了)。