问题:
默认返回的
解决:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
public class WebSecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http.exceptionHandling().accessDeniedHandler(new CustomAccessDeniedHandler()).and() .exceptionHandling().authenticationEntryPoint(new CustomHttp403ForbiddenEntryPoint()); } public class CustomAccessDeniedHandler implements AccessDeniedHandler { @Override public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException arg2) throws IOException, ServletException { response.getWriter().print("You don't have required role to perform this action."); } } public class CustomHttp403ForbiddenEntryPoint implements AuthenticationEntryPoint { @Override public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException { response.getWriter().print("You need to login first in order to perform this action."); } } } |
参考:
https://stackoverflow.com/questions/28057592/spring-boot-accessdeniedhandler-does-not-work
https://blog.csdn.net/jmppok/article/details/44828829
https://blog.csdn.net/jiangshanwe/article/details/73234988