spring security-捕获身份验证失败 url 内的异常

发布于 2024-10-31 01:08:49 字数 116 浏览 0 评论 0原文

我使用实现 UserDetails 的类进行身份验证。在其中我传递了自定义异常,就像尝试超过而不是 userNotFoundException 一样。

我想知道如何在身份验证失败 url 中捕获此异常。

I use class which is implements UserDetails for authentication. Inside that I pass my custom exceptions, just like attempts exceeds instead of userNotFoundException.

I want to know how to catch this exception in the authentication failure url.

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

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

发布评论

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

评论(1

叫思念不要吵 2024-11-07 01:08:49

我假设您有一个实现 UserDetailsS​​ervice 的类,并且您正在抛出一个要在 AuthenticationFailureHandler 中捕获的自定义异常。如果是这种情况,您的自定义异常应该扩展AuthenticationException 和登录过滤器会将其传递给 AuthenticationFailureHandleronAuthenticationFailure 方法。

I am assuming that you have a class that implements UserDetailsService and you are throwing a custom exception that you want to catch in AuthenticationFailureHandler. If this is the case, your custom exception should extend AuthenticationException and login filter will pass it to onAuthenticationFailure method of AuthenticationFailureHandler.

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