|
@@ -0,0 +1,25 @@
|
|
|
+package com.fdage.followheartplay.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;
|
|
|
+
|
|
|
+@Configuration
|
|
|
+public class GlobalCorsConfig {
|
|
|
+ @Bean
|
|
|
+ public CorsFilter corsFilter() {
|
|
|
+ CorsConfiguration config = new CorsConfiguration();
|
|
|
+ config.addAllowedOriginPattern("*");
|
|
|
+ config.setAllowCredentials(true);
|
|
|
+ config.addAllowedMethod("*");
|
|
|
+ config.addAllowedHeader("*");
|
|
|
+ config.addExposedHeader("*");
|
|
|
+
|
|
|
+ UrlBasedCorsConfigurationSource configSource = new UrlBasedCorsConfigurationSource();
|
|
|
+ configSource.registerCorsConfiguration("/**", config);
|
|
|
+
|
|
|
+ return new CorsFilter(configSource);
|
|
|
+ }
|
|
|
+}
|