HttpSecurity.exceptionHandling(exception -> exception
//인증
.authenticationEntryPoint(new AuthenticationEntryPoint() {
@Override
public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException {
System.out.println("exception: " + authException.getMessage());
response.sendRedirect("/logout");//사용자 정의로 커스텀하게 만들었을 경우 login, logout 페이지를 직접 만들어줘야한다.
}
})
//인가
.accessDeniedHandler(new AccessDeniedHandler() {
@Override
public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException) throws IOException, ServletException {
System.out.println("exception: " + accessDeniedException.getMessage());
response.sendRedirect("/denied");
}
})
);
ex) spring MVC에서 @ControllerAdvice 적용하지 않은 상태에서
controller 부분 index에서 예외가 발생한 상황 (예외처리를 했는데도 불구하고 예외를 잡지 못했을 경우)
서블릿에서 해결해야하는데 ExceptionTranslationFilter로 온 경우 해당 필터는 서블릿 예외를 처리하는 목적으로 설계된 것은 아니나 들어왔을 때 SecurityException이 null이 되고 rethrow를 한다
인증 / 인가 예외처리를 강제로 넣어주게되면 인증/인가 처리 로직으로 간다