41 lines
1.3 KiB
Java
41 lines
1.3 KiB
Java
|
|
package com.it.rattan.config;
|
||
|
|
|
||
|
|
import org.springframework.context.annotation.Bean;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.web.cors.CorsConfiguration;
|
||
|
|
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
|
||
|
|
import org.springframework.web.filter.CorsFilter;
|
||
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
public class WebConfig implements WebMvcConfigurer {
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 跨域配置
|
||
|
|
*/
|
||
|
|
@Bean
|
||
|
|
public CorsFilter corsFilter() {
|
||
|
|
CorsConfiguration config = new CorsConfiguration();
|
||
|
|
// 允许所有来源
|
||
|
|
config.addAllowedOrigin("*");
|
||
|
|
// 允许所有请求头
|
||
|
|
config.addAllowedHeader("*");
|
||
|
|
// 允许所有请求方法
|
||
|
|
config.addAllowedMethod("*");
|
||
|
|
// 允许携带凭证
|
||
|
|
config.setAllowCredentials(true);
|
||
|
|
// 预检请求缓存时间
|
||
|
|
config.setMaxAge(3600L);
|
||
|
|
|
||
|
|
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
||
|
|
source.registerCorsConfiguration("/**", config);
|
||
|
|
return new CorsFilter(source);
|
||
|
|
}
|
||
|
|
}
|