在 MVC 应用程序中使用 Elmah 进行无懈可击的异常处理

发布于 2024-09-13 03:32:33 字数 297 浏览 5 评论 0原文

我正在尝试为 MVC 应用程序设计一个无懈可击的异常处理策略,其中我们使用 Elmah 来记录未处理的异常。我想对我的一些想法提出批评。

  1. 所有应用程序异常都应在控制器层处理。该层以下任何未处理的异常都应该是来自控制器的请求的结果。
  2. 在控制器中,开发人员可以通过用户弹出窗口等处理某些错误,并可选择记录到 Elmah。
  3. 在控制器中,对于未处理的错误,我可以使用自定义 HandleError 属性来决定是让 Elmah 记录错误,还是继续进入错误视图。

听起来还好吗?有什么严重的缺失吗?

I am trying in design a watertight exception handling strategy for an MVC application in which we use Elmah for logging unhandled exceptions. I would like some critique on some of my thoughts.

  1. All application exceptions should be handled in the controller layer. Any unhandled exception below that layer should be the result of a request from a controller.
  2. In the controllers, a developer can handle certain errors with user popups etc. with optional logging to Elmah.
  3. In the controllers, for unhandled errors, I can use a custom HandleError attribute to decide whether to just let Elmah log the error, or to also then proceed to the Error view.

Sound OK? Anything serious missing?

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

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

发布评论

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

评论(1

尹雨沫 2024-09-20 03:32:33

你走在正确的轨道上。查看 NerdDinner 示例,了解控制器中处理错误的一些示例。

在 MVC 中,您可以创建一个自定义控制器工厂,它将 HandleErrorWithElmah 属性注入到所有控制器中。

查看我的代码项目文章,该文章涉及 MVC 中的日志记录 - 希望有所帮助。

You're on the right track. Check out the NerdDinner sample for some examples of handling errors in controllers.

In MVC, you can create a custom controller factory that will inject the HandleErrorWithElmah attribute into all of your controllers.

Check out my code project article that deals with logging in MVC - hope that helps.

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