Struts 2 自定义异常处理
我是 Struts 2 的新手。我正在使用 Apache Struts 2 文档来学习 Struts 2。
我需要一个关于 Struts 2 中自定义异常处理的教程;我应该看哪里?
I am a newbie to Struts 2. I am using the Apache Struts 2 documentation for learning Struts 2.
I need a tutorial for custom exception handling in Struts 2; where should I look?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我推荐指南;它们涵盖了大部分功能,包括异常处理。
简而言之,“异常”拦截器处理 Struts 2 声明性异常处理。您可以声明全局异常处理程序和特定于异常的异常处理程序。每个都指定要处理的异常以及捕获异常时要返回的结果:
如果此后您还有其他问题,则需要更具体。
I recommend the guides; they cover most functionality, including exception handling.
The nutshell version is that the "exception" interceptor handles Struts 2 declarative exception handling. You can declare both global and exception-specific exception handlers. Each specifies the exception to handle and the result to be returned if the exception is caught:
If you have further questions after that, you'll need to be more specific.