yonge 3 年之前
父节点
当前提交
dbcdf3433e
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      edu-auth/edu-auth-server/src/main/java/com/keao/edu/auth/config/WebMvcConfig.java

+ 16 - 0
edu-auth/edu-auth-server/src/main/java/com/keao/edu/auth/config/WebMvcConfig.java

@@ -8,6 +8,7 @@ import org.springframework.context.annotation.Bean;
 import org.springframework.context.annotation.Configuration;
 import org.springframework.format.FormatterRegistry;
 import org.springframework.http.MediaType;
+import org.springframework.web.servlet.config.annotation.CorsRegistry;
 import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
 import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
 
@@ -33,6 +34,21 @@ public class WebMvcConfig implements WebMvcConfigurer {
 		registry.addInterceptor(getDataSrouceInterceptor()).addPathPatterns("/**");
 		registry.addInterceptor(getTenantInterceptor()).addPathPatterns("/**");
 	}
+	
+	@Override 
+	public void addCorsMappings(CorsRegistry registry) {
+
+		registry.addMapping("/**")
+
+		.allowedOrigins("*")
+
+		.allowCredentials(true)
+
+		.allowedMethods("GET", "POST", "DELETE", "PUT")
+
+		.maxAge(3600);
+
+	}
 
 	@Bean
 	public DataSourceInterceptor getDataSrouceInterceptor() {