Spring Boot Security:使用自定义身份验证过滤器进行异常处理

mar*_*ret 5 java spring-mvc spring-security spring-boot

我正在使用 Spring Boot + Spring Security(java 配置)。我的问题是旧问题,但我发现的所有信息都部分过时,并且大部分包含 xml-config (这很难甚至不可能适应一段时间)

我正在尝试使用令牌(不存储在服务器端)进行无状态身份验证。长话短说 - 它是 JSON Web 令牌身份验证格式的简单模拟。我在默认过滤器之前使用了两个自定义过滤器:

  • TokenizedUsernamePasswordAuthenticationFilter 在入口点(“/myApp/login”)成功验证后创建令牌

  • TokenAuthenticationFilter 尝试使用所有受限 URL 的令牌(如果提供)对用户进行身份验证。

我不明白如何正确处理自定义异常(使用自定义消息或重定向),如果我想要一些...过滤器中的异常与控制器中的异常无关,因此它们不会由相同的处理程序处理...

如果我理解正确的话,我不能使用

.formLogin()

                .defaultSuccessUrl("...")
                .failureUrl("...")
                .successHandler(myAuthenticationSuccessHandler)
                .failureHandler(myAthenticationFailureHandler)
Run Code Online (Sandbox Code Playgroud)

自定义异常,因为我使用自定义过滤器...那么该怎么做呢?

我的配置:

@Override
    protected void configure(HttpSecurity http) throws Exception {
        http
                .csrf().disable()
                .sessionManagement()
                .sessionCreationPolicy(SessionCreationPolicy.STATELESS)
        .and()  .anonymous()

        .and()  .authorizeRequests()                      
                .antMatchers("/").permitAll()
                ...
                .antMatchers(HttpMethod.POST, "/login").permitAll()                    
        .and()                    
                .addFilterBefore(new TokenizedUsernamePasswordAuthenticationFilter("/login",...), UsernamePasswordAuthenticationFilter.class)                      
                .addFilterBefore(new TokenAuthenticationFilter(...), UsernamePasswordAuthenticationFilter.class)

    }
Run Code Online (Sandbox Code Playgroud)

yuv*_*uva 3

我们也可以在自定义过滤器中设置 AuthenticationSuccessHandler 和 AuthenticationFailureHandler。

那么就你的情况而言,

// Constructor of TokenizedUsernamePasswordAuthenticationFilter class
public TokenizedUsernamePasswordAuthenticationFilter(String path, AuthenticationSuccessHandler successHandler, AuthenticationFailureHandler failureHandler) {
    setAuthenticationSuccessHandler(successHandler);
    setAuthenticationFailureHandler(failureHandler);
}
Run Code Online (Sandbox Code Playgroud)

现在要使用这些处理程序,只需调用onAuthenticationSuccess()onAuthenticationFailure()方法。

@Override
protected void successfulAuthentication(HttpServletRequest request, HttpServletResponse response,
                                          FilterChain chain, Authentication authentication) throws IOException, ServletException {

    getSuccessHandler().onAuthenticationSuccess(request, response, authentication);
}

@Override
protected void unsuccessfulAuthentication(HttpServletRequest request,
                                            HttpServletResponse response,
                                            AuthenticationException failed)
          throws IOException, ServletException {

    getFailureHandler().onAuthenticationFailure(request, response, failed);
}
Run Code Online (Sandbox Code Playgroud)

您可以创建自定义身份验证处理程序类来处理成功或失败的情况。例如,

public class LoginSuccessHandler implements AuthenticationSuccessHandler {

  @Override
  public void onAuthenticationSuccess(HttpServletRequest httpServletRequest,
                                      HttpServletResponse httpServletResponse,
                                      Authentication authentication)
          throws IOException, ServletException {

    SecurityContextHolder.getContext().setAuthentication(authentication);
    // Do your stuff, eg. Set token in response header, etc.
  }
}
Run Code Online (Sandbox Code Playgroud)

现在处理异常,

public class LoginFailureHandler implements AuthenticationFailureHandler {

  @Override
  public void onAuthenticationFailure(HttpServletRequest httpServletRequest,
                                      HttpServletResponse httpServletResponse,
                                      AuthenticationException e)
          throws IOException, ServletException {

    String errorMessage = ExceptionUtils.getMessage(e);

    sendError(httpServletResponse, HttpServletResponse.SC_UNAUTHORIZED, errorMessage, e);
  }


  private void sendError(HttpServletResponse response, int code, String message, Exception e) throws IOException {
    SecurityContextHolder.clearContext();

    Response<String> exceptionResponse =
            new Response<>(Response.STATUES_FAILURE, message, ExceptionUtils.getStackTrace(e));

    exceptionResponse.send(response, code);
  }
}
Run Code Online (Sandbox Code Playgroud)

我的自定义响应类生成所需的 JSON 响应,

public class Response<T> {

  public static final String STATUES_SUCCESS = "success";
  public static final String STATUES_FAILURE = "failure";

  private String status;
  private String message;
  private T data;

  private static final Logger logger = Logger.getLogger(Response.class);

  public Response(String status, String message, T data) {
    this.status = status;
    this.message = message;
    this.data = data;
  }

  public String getStatus() {
    return status;
  }

  public String getMessage() {
    return message;
  }

  public T getData() {
    return data;
  }

  public String toJson() throws JsonProcessingException {
    ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
    try {
      return ow.writeValueAsString(this);
    } catch (JsonProcessingException e) {
      logger.error(e.getLocalizedMessage());
      throw e;
    }
  }

  public void send(HttpServletResponse response, int code) throws IOException {
    response.setStatus(code);
    response.setContentType("application/json");
    String errorMessage;

    errorMessage = toJson();

    response.getWriter().println(errorMessage);
    response.getWriter().flush();
  }
}
Run Code Online (Sandbox Code Playgroud)

我希望这有帮助。