Lift 中如何捕获异常并重定向到错误页面?

发布于 2024-08-21 00:28:20 字数 310 浏览 4 评论 0原文

如何在 Lift 中制作错误处理程序?我有一个带有一些片段的 html 页面,如果这些片段之一抛出异常,我想捕获它并重定向到一些用户友好的错误页面。

如何以包罗万象的方式做到这一点?我不想分别对每个片段进行错误处理。我正在寻找类似 这个在Wicket。

How to make error handlers in Lift? I have html page with some snippets, if one of those snippets throws an exception I want to catch it and redirect to some user friendly error page.

How to do this in catch-all manner? I do not want to put error handling to each snippet separately. I am looking something like this in Wicket.

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

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

发布评论

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

评论(1

昇り龍 2024-08-28 00:28:20

如有疑问,请检查 LiftRules API

根据这篇文章这样的东西应该有效:

LiftRules.exceptionHandler.prepend { 
  case ("production", Req(path, "", GetRequest), someException) => { 
    Log.error("MELT DOWN!!") 
    RedirectResponse("/") 
  } 
} 

签名异常处理程序类型是:

type ExceptionHandlerPF = PartialFunction[(Props.RunModes.Value, Req, 
  Throwable), LiftResponse] 

When in doubt, check LiftRules API.

According this post something like this should work:

LiftRules.exceptionHandler.prepend { 
  case ("production", Req(path, "", GetRequest), someException) => { 
    Log.error("MELT DOWN!!") 
    RedirectResponse("/") 
  } 
} 

The signature of the exception handler type is:

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