Struts中如何处理异常
Struts中我们如何处理异常?请分享示例代码。
How can we handle exceptions in Struts? Please share the sample code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Struts中我们如何处理异常?请分享示例代码。
How can we handle exceptions in Struts? Please share the sample code.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
以下 URL 应该有助于 http://www.objectsource.com/j2eechapters/Ch18-Exception_Handling。嗯
The following URL should help http://www.objectsource.com/j2eechapters/Ch18-Exception_Handling.htm
使用log4j来记录异常,
永远不要在struts应用程序中使用System.out.println来捕获异常,因为它的成本很高,
Log4j教程> http://logging.apache.org/log4j/1.2/manual.html
处理错误:
在struts项目中使用ActionError对象来处理错误对象,并使用ActionErrors对象来处理错误。
假设
要处理异常:
1)使用 try 和 cach 块
2)使用声明性异常处理技术
来处理异常,方法是在 struts-config.xml 中使用全局异常标记,
每当异常发生时,它都会执行 gen.jsp 页面。
Use log4j to log the exceptions,
Never use System.out.println in struts application to catch exceptions, as it is expensive ,
Tutorials for log4j> http://logging.apache.org/log4j/1.2/manual.html
to handle the errors:
in struts project to handle the error objet by using ActionError object and to handle the errors by using ActionErrors object.
for suppose
to handle exception:
1)using try and cach blocks
2)using declarative exception handling technique
to handle the exceptions by using global exceptons tag in struts-config.xml
whenever that exception will be came it executes the gen.jsp page.