|
@@ -8,11 +8,14 @@ import org.springframework.web.filter.CorsFilter;
|
|
|
|
|
|
|
|
@Configuration
|
|
@Configuration
|
|
|
public class CorsConfig {
|
|
public class CorsConfig {
|
|
|
|
|
+ // 当前跨域请求最大有效时长。这里默认30天
|
|
|
|
|
+ private long maxAge = 30 * 24 * 60 * 60;
|
|
|
private CorsConfiguration buildConfig() {
|
|
private CorsConfiguration buildConfig() {
|
|
|
CorsConfiguration corsConfiguration = new CorsConfiguration();
|
|
CorsConfiguration corsConfiguration = new CorsConfiguration();
|
|
|
corsConfiguration.addAllowedOrigin("*"); // 1 设置访问源地址
|
|
corsConfiguration.addAllowedOrigin("*"); // 1 设置访问源地址
|
|
|
corsConfiguration.addAllowedHeader("*"); // 2 设置访问源请求头
|
|
corsConfiguration.addAllowedHeader("*"); // 2 设置访问源请求头
|
|
|
corsConfiguration.addAllowedMethod("*"); // 3 设置访问源请求方法
|
|
corsConfiguration.addAllowedMethod("*"); // 3 设置访问源请求方法
|
|
|
|
|
+ corsConfiguration.setMaxAge(maxAge);
|
|
|
return corsConfiguration;
|
|
return corsConfiguration;
|
|
|
}
|
|
}
|
|
|
|
|
|