|
|
|
@@ -0,0 +1,22 @@ |
|
|
|
package com.simple.config; |
|
|
|
|
|
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
import org.springframework.web.servlet.config.annotation.CorsRegistry; |
|
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; |
|
|
|
|
|
|
|
/** |
|
|
|
* Created by Administrator on 2017/8/9. |
|
|
|
*/ |
|
|
|
@Configuration |
|
|
|
public class CorsConfig extends WebMvcConfigurerAdapter { |
|
|
|
|
|
|
|
@Override |
|
|
|
public void addCorsMappings(CorsRegistry registry) { |
|
|
|
registry.addMapping("/**") |
|
|
|
.allowedOrigins("*") |
|
|
|
.allowCredentials(true) |
|
|
|
.allowedMethods("GET", "POST", "DELETE", "PUT") |
|
|
|
.maxAge(3600); |
|
|
|
} |
|
|
|
|
|
|
|
} |