41 lines
1.4 KiB
Java
41 lines
1.4 KiB
Java
|
|
package com.whdc.config;
|
|||
|
|
|
|||
|
|
import org.springframework.context.annotation.Configuration;
|
|||
|
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
|||
|
|
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
|
|||
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
|||
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @author 李赛
|
|||
|
|
* @date 2022-06-26 1:09
|
|||
|
|
*/
|
|||
|
|
@EnableWebMvc
|
|||
|
|
@Configuration
|
|||
|
|
public class InterceptorConfig implements WebMvcConfigurer {
|
|||
|
|
|
|||
|
|
@Override
|
|||
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|||
|
|
registry.addResourceHandler("/**").addResourceLocations("classpath:/static/");
|
|||
|
|
registry.addResourceHandler("doc.html").addResourceLocations("classpath:/META-INF/resources/");
|
|||
|
|
registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 开启跨域
|
|||
|
|
*/
|
|||
|
|
@Override
|
|||
|
|
public void addCorsMappings(CorsRegistry registry) {
|
|||
|
|
// 设置允许跨域的路由
|
|||
|
|
registry.addMapping("/**")
|
|||
|
|
// 设置允许跨域请求的域名------------修改此行
|
|||
|
|
.allowedOriginPatterns("*")
|
|||
|
|
// 是否允许证书(cookies)
|
|||
|
|
.allowCredentials(true)
|
|||
|
|
// 设置允许的方法
|
|||
|
|
.allowedMethods("*")
|
|||
|
|
// 跨域允许时间
|
|||
|
|
.maxAge(3600);
|
|||
|
|
}
|
|||
|
|
}
|