Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
洪彬浩 | a26866ba92 | 2 weeks ago |
洪彬浩 | fe7485d87f | 2 weeks ago |
洪彬浩 | 984e3a1099 | 2 weeks ago |
@ -0,0 +1,13 @@
|
|||||||
|
package com.annotation;
|
||||||
|
|
||||||
|
import java.lang.annotation.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 忽略Token验证
|
||||||
|
*/
|
||||||
|
@Target(ElementType.METHOD)
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Documented
|
||||||
|
public @interface IgnoreAuth {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package com.config;
|
||||||
|
|
||||||
|
import com.interceptor.AuthorizationInterceptor;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||||||
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
||||||
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ClassName InterceptorConfig
|
||||||
|
* @Description 拦截器配置
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
public class InterceptorConfig implements WebMvcConfigurer {
|
||||||
|
@Autowired
|
||||||
|
private AuthorizationInterceptor authorizationInterceptor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拦截器配置
|
||||||
|
* @param registry
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void addInterceptors(InterceptorRegistry registry) {
|
||||||
|
registry.addInterceptor(authorizationInterceptor).addPathPatterns("/**").excludePathPatterns("/static/**");;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 静态资源拦截处理
|
||||||
|
* @param registry
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
||||||
|
registry.addResourceHandler("/**")
|
||||||
|
.addResourceLocations("classpath:/resources/")
|
||||||
|
.addResourceLocations("classpath:/static/")
|
||||||
|
.addResourceLocations("classpath:/admin/")
|
||||||
|
.addResourceLocations("classpath:/front/")
|
||||||
|
.addResourceLocations("classpath:/qian/")
|
||||||
|
.addResourceLocations("classpath:/public/");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue