Struts中如何处理异常

发布于 2024-10-21 13:13:37 字数 31 浏览 1 评论 0原文

Struts中我们如何处理异常?请分享示例代码。

How can we handle exceptions in Struts? Please share the sample code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疧_╮線 2024-10-28 13:13:37

在struts项目中使用ActionError对象来处理错误对象,并使用ActionErrors对象来处理错误。

假设

ActionError ae1=new ActionError("err.one");

ActionError ae2=new ActionError("err.two");

Action Errors aes=new ActionErrors();

aes.add(ae1);

aes.add(ae2);

saveErrors(request,aes);//store the errors object in request object

要处理异常:

1)使用 try 和 cach 块

2)使用声明性异常处理技术

来处理异常,方法是在 struts-config.xml 中使用全局异常标记,

每当异常发生时,它都会执行 gen.jsp 页面。

in struts project to handle the error objet by using ActionError object and to handle the errors by using ActionErrors object.

for suppose

ActionError ae1=new ActionError("err.one");

ActionError ae2=new ActionError("err.two");

Action Errors aes=new ActionErrors();

aes.add(ae1);

aes.add(ae2);

saveErrors(request,aes);//store the errors object in request object

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文