Blame view

src/main/java/com/daeucna/board/security/CustomAuthenticationFailureHandler.java 863 Bytes
a6468920   sangkiham   Spring Boot Board...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  package com.daeucna.board.security;

  

  import java.io.IOException;

  

  import javax.servlet.ServletException;

  import javax.servlet.http.HttpServletRequest;

  import javax.servlet.http.HttpServletResponse;

  

  import org.springframework.security.core.AuthenticationException;

  import org.springframework.security.web.authentication.AuthenticationFailureHandler;

  import org.springframework.stereotype.Component;

  

  import lombok.extern.slf4j.Slf4j;

  

  @Slf4j

  @Component

  public class CustomAuthenticationFailureHandler implements AuthenticationFailureHandler {

  

    @Override

      public void onAuthenticationFailure(HttpServletRequest request, HttpServletResponse response, AuthenticationException exception) throws IOException, ServletException {

cb01f7b1   sangkiham   .
21
  	  	log.info("Authentication Failure");

a01d5c18   sangkiham   .
22
          response.sendRedirect(request.getContextPath() + "/");

a6468920   sangkiham   Spring Boot Board...
23
24
25
      }

  

  }