fix[litemall-core]: 可能解决跨域问题
This commit is contained in:
@@ -8,11 +8,14 @@ import org.springframework.web.filter.CorsFilter;
|
||||
|
||||
@Configuration
|
||||
public class CorsConfig {
|
||||
// 当前跨域请求最大有效时长。这里默认30天
|
||||
private long maxAge = 30 * 24 * 60 * 60;
|
||||
private CorsConfiguration buildConfig() {
|
||||
CorsConfiguration corsConfiguration = new CorsConfiguration();
|
||||
corsConfiguration.addAllowedOrigin("*"); // 1 设置访问源地址
|
||||
corsConfiguration.addAllowedHeader("*"); // 2 设置访问源请求头
|
||||
corsConfiguration.addAllowedMethod("*"); // 3 设置访问源请求方法
|
||||
corsConfiguration.setMaxAge(maxAge);
|
||||
return corsConfiguration;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user