繁体   English   中英

具有preauth的Spring Security自定义异常处理程序

[英]Spring security custom exception handler with preauth

我正在尝试使用Spring Security 3.1.2配置一些自定义异常处理。 我尝试按照此处此处找到的示例进行操作,但均无济于事。 我是Spring Security的新手,我想知道这是否与我使用preauth过滤器有关。 我从AuthenticationUserDetailsS​​ervice实现的loadUserDetails()方法中抛出了自定义异常。

public class AuthServiceImpl implements AuthenticationUserDetailsService<Authentication> {
  @Autowired
  private AuthDao authDao;

  @Override
  public UserDetails loadUserDetails(Authentication auth) throws UsernameNotFoundException {
    Request req = (Request) auth.getPrincipal();

    //get user details
    User u = authDao.loadUser(req.getSessionId());

    //check user rights for requested action
    if(!u.getRights().contains(req.getAction()){
      throw new CustomAuthException("User does not have permission to perform this action");
    }

    return u;
  }
}

当引发异常时,我将获得包含异常详细信息的常规Tomcat 500页面。 无论出于什么原因,我的自定义异常都不会得到处理。 我什至在自定义处理程序中添加了一些println(),甚至没有被调用。

我开始怀疑这个方法是否以某种方式被排除在Spring的异常处理之外。 如果需要,我可以提供更多代码示例,但是目前我不确定要共享的内容。

您使用SimpleMappingExceptionResolver 它是Spring MVC组件。 因此,当您在执行某些控制器期间遇到某些异常时,DispatcherServlet将调用SimpleMappingExceptionResolver。 问题是您的AuthenticationUserDetailsS​​ervice实现仅在登录操作期间使用。 并且该动作直接由Spring Security过滤器处理(不使用Spring MVC) 请求未到达DispatcherServlet,在这种情况下将永远不会调用SimpleMappingExceptionResolver。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM