在Spring Boot中配置跨域

# 操作

  1. 新建config包;
  2. 新建CorsConfig类,实现WebMvcConfigurer接口;
  3. 重写addCorsMappings方法。

# 类路径如下

# CorsConfig代码如下

package com.example.config;

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("*");
    }
}
全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务