美文网首页
使用Intercepter快速实现登陆认证

使用Intercepter快速实现登陆认证

作者: xmfaly | 来源:发表于2018-03-18 10:55 被阅读0次

    在项目中很多时候都会遇到需要登陆认证之后才开放接口的权限需求,但是如果在小的项目中都选择spring security 或者 shiro 的话显得大材小用,如果每个接口都加一个判断的话又不是很符合面向对象的编程思想。
    所以我想直接利用Spring Mvc提供的Intercepter 和自定义注解来解决这个问题。

    首先创建一个注解用于面权限认证的接口

    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    public @interface NoAuth {
    }
    
    

    配置拦截器

      @Override
        public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
    
            // 不是本项目的不进行拦截
            if (!(handler instanceof HandlerMethod)) {
                return true;
            }
            HandlerMethod method = (HandlerMethod) handler;
            NoAuth noAuth = method.getMethodAnnotation(NoAuth.class);
            if (noAuth != null) {
                return true;
            } else {
                if (request.getSession().getAttribute("admin") == null) {
                    response.sendRedirect("/login");;
                    return false;
                }
                return true;
            }
        }
    

    拦截器会拦截下所有没有 NoAuth 注解的方法进项权限认证。

    注册拦截器

    @Configuration
    @EnableWebMvc
    public class MvcConfig extends WebMvcConfigurerAdapter {
    
        @Autowired
        private AuthIntercepter authIntercepter;
    
        @Override
        public void addInterceptors(InterceptorRegistry registry){
            registry.addInterceptor(authIntercepter).addPathPatterns("/**");
    
        }
    }
    

    完整项目代码 github/xmfaly

    相关文章

      网友评论

          本文标题:使用Intercepter快速实现登陆认证

          本文链接:https://www.haomeiwen.com/subject/jyteqftx.html