You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
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/");
|
|
}
|
|
}
|