排除拦截注解 === jeewx-boot主要有两个拦截器: 1. 登录拦截器(LoginInterceptor) 2. 签名拦截器(AccessSignInterceptor) 1.通过注解,排除签名拦截器拦截 ``` @SkipAuth(auth=SkipPerm.SKIP_SIGN) ``` 2.通过注解,排除后台拦截器拦截 ``` @SkipAuth(auth=SkipPerm.SKIP_BACK) ``` 3.通过注解,同时排除后台、签名拦截器拦截 ``` @SkipAuth(auth=SkipPerm.SKIP_ALL) ``` 用法 1.直接声明类上,整个类的请求都排除 ![](https://img.kancloud.cn/3c/e3/3ce374cfa7a5281c42dfc2813235a28b_1053x635.png) 2.声明在方法上,此方法访问请求排除 ![](https://img.kancloud.cn/6d/b4/6db4d5f07a0e89d9daef57d46c34641e_1108x675.png)