16 lines
532 B
Java
16 lines
532 B
Java
|
package com.example.demo;
|
||
|
|
||
|
import org.springframework.context.annotation.Configuration;
|
||
|
import org.springframework.lang.NonNull;
|
||
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
||
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||
|
|
||
|
@Configuration
|
||
|
public class WebConfig implements WebMvcConfigurer {
|
||
|
@Override
|
||
|
public void addCorsMappings(@NonNull CorsRegistry registry) {
|
||
|
registry.addMapping("/**")
|
||
|
.allowedMethods("GET", "POST", "PUT", "DELETE");
|
||
|
}
|
||
|
}
|