使用@ExceptionHandler处理Spring Security身份验证异常

使用@ExceptionHandler处理Spring Security身份验证异常,第1张

使用@ExceptionHandler处理Spring Security身份验证异常

我尝试按照建议从AuthenticationEntryPoint自己编写json,它可以工作。

仅出于测试目的,我通过删除response.sendError更改了AutenticationEntryPoint

@Component("restAuthenticationEntryPoint")public class RestAuthenticationEntryPoint implements AuthenticationEntryPoint{    public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authenticationException) throws IOException, ServletException {        response.setContentType("application/json");        response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);        response.getOutputStream().println("{ "error": "" + authenticationException.getMessage() + "" }");    }}

这样,即使您使用的是Spring Security AuthenticationEntryPoint,也可以将自定义json数据与未经授权的401一起发送。

显然,您不会像我出于测试目的那样构建json,但会序列化一些类实例



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4961843.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存