struts1 配置错误界面 error-page
可以在web.xml中配置404.500等错误,这样当应用程序出错的时候可避免用户直接看到错误界面,具体的配置方法如下,在<welcome-file-list>后面配置<error-page>
<!-- 配置错误界面 --><error-page> <exception-type>java.io.IOException</exception-type><location>/ioexception.jsp</location></error-page>