|
@@ -4,15 +4,15 @@ import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
|
|
|
|
|
|
-@Configuration
|
|
+
|
|
public class WebMvcConfig extends WebMvcConfigurationSupport {
|
|
public class WebMvcConfig extends WebMvcConfigurationSupport {
|
|
|
|
|
|
- @Override
|
|
+
|
|
- public void addCorsMappings(CorsRegistry registry) {
|
|
+
|
|
- registry.addMapping("/**")
|
|
+
|
|
- .allowedOrigins("*")
|
|
+
|
|
- .allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")
|
|
+
|
|
- .maxAge(3600)
|
|
+
|
|
- .allowCredentials(true);
|
|
+
|
|
- }
|
|
+
|
|
}
|
|
}
|