struts2 采用声明式的方法管理异常处理,因此,我们无需在 execute方法中编写 大量的 try...catch语句来捕获异常;只需要在 struts.xml文件中配置异常的映射机制,struts2 便能够处理并转入响应的视图资源.
eg:
页面输出 异常信息:
例如internal_Error.jsp页面
<body> <s:property value="exception.message"/> </body>