|
@@ -0,0 +1,32 @@
|
|
|
|
+package cn.iselab.mooctest.user.configure;
|
|
|
|
+
|
|
|
|
+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;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * @program: mooctest-user
|
|
|
|
+ * @mail: menduo96@gmail.com
|
|
|
|
+ * @author: menduo
|
|
|
|
+ * @create: 2018-11-14 12:34
|
|
|
|
+ **/
|
|
|
|
+@Configuration
|
|
|
|
+public class CorsConfig {
|
|
|
|
+ // 临时要跨域,临时加的代码
|
|
|
|
+ private CorsConfiguration buildConfig() {
|
|
|
|
+ CorsConfiguration corsConfiguration = new CorsConfiguration();
|
|
|
|
+ corsConfiguration.addAllowedOrigin("*"); // 允许任何域名使用
|
|
|
|
+ corsConfiguration.addAllowedHeader("*"); // 允许任何头
|
|
|
|
+ corsConfiguration.addAllowedMethod("*"); // 允许任何方法(post、get等)
|
|
|
|
+ return corsConfiguration;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Bean
|
|
|
|
+ public CorsFilter corsFilter() {
|
|
|
|
+ UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
|
|
|
+ source.registerCorsConfiguration("/**", buildConfig()); // 对接口配置跨域设置
|
|
|
|
+ return new CorsFilter(source);
|
|
|
|
+ }
|
|
|
|
+}
|