美文网首页
spring-boot后端解决跨域问题

spring-boot后端解决跨域问题

作者: MaJiT | 来源:发表于2020-07-27 18:04 被阅读0次

1.配置文件

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * 解决跨域问题
 */
@Configuration
public class CorsConfig implements WebMvcConfigurer {

    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")
                .allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS")
                .allowCredentials(true)
                .maxAge(3600)
                .allowedHeaders("*");
    }
}

相关文章

网友评论

      本文标题:spring-boot后端解决跨域问题

      本文链接:https://www.haomeiwen.com/subject/jyuplktx.html