java - Spring 启动安全 : Exception handling with custom authentication filters

标签 java spring-mvc spring-security spring-boot

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

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

  • TokenizedUsernamePasswordAuthenticationFilter 在之后创建 token 入口点(“/myApp/login”)的身份验证成功

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

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

如果我没理解错,我就不能用了

.formLogin()

                .defaultSuccessUrl("...")
                .failureUrl("...")
                .successHandler(myAuthenticationSuccessHandler)
                .failureHandler(myAthenticationFailureHandler)

自定义异常,因为我使用自定义过滤器... 那么有什么方法呢?

我的配置:

@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)

    }

最佳答案

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

在你的情况下,

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

现在要使用这些处理程序,只需调用 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);
}

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

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.
  }
}

现在处理异常,

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);
  }
}

我的自定义响应类生成所需的 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();
  }
}

希望对您有所帮助。

关于java - Spring 启动安全 : Exception handling with custom authentication filters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34356275/

相关文章:

spring - 如何在 Spring-Web 中使用 RestTemplate 解析 gzip 编码的响应

java - Spring Boot上传表单数据和文件

cookies - 如何使用基于 Spring Security 持久 token 的 RememberMe 服务以编程方式注销

java - 单击下一个按钮时显示下一个问题

java - spring mvc以jsp形式返回子类对象

java - 无法加载Spring Web应用程序的ApplicationContext

java - LDAP 身份验证 - Spring Security - LdapAuthenticationProvider

java - 使用MultiMatchQueryBuilder进行 'and'关键字查询搜索

java - 使用 java.util.Scanner 解析基本类型

java - 字典序中的最后一个字符是什么?