|
@@ -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() {
|