Spring Boot中CORS策略配置

发布时间:2024-11-15 12:48:02 作者:小樊
来源:亿速云 阅读:78

在Spring Boot中,配置CORS(跨域资源共享)策略可以通过以下几种方式实现:

1. 全局CORS配置

你可以在Spring Boot应用的主类或配置类中使用@CrossOrigin注解来配置全局CORS策略。

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.CrossOrigin;

@SpringBootApplication
@CrossOrigin(origins = "http://localhost:8080", maxAge = 3600)
public class MyApplication {
    public static void main(String[] args) {
        SpringApplication.run(MyApplication.class, args);
    }
}

在这个例子中:

2. 使用CORS配置类

你也可以创建一个专门的CORS配置类来配置CORS策略。

import org.springframework.context.annotation.Bean;
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 {

    @Bean
    public WebMvcConfigurer corsConfigurer() {
        return new WebMvcConfigurer() {
            @Override
            public void addCorsMappings(CorsRegistry registry) {
                registry.addMapping("/**")
                        .allowedOrigins("http://localhost:8080")
                        .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
                        .allowedHeaders("*")
                        .allowCredentials(true)
                        .maxAge(3600);
            }
        };
    }
}

在这个例子中:

3. 使用@CrossOrigin注解在控制器上

你也可以在具体的控制器类或方法上使用@CrossOrigin注解来配置CORS策略。

import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MyController {

    @CrossOrigin(origins = "http://localhost:8080", maxAge = 3600)
    @GetMapping("/hello")
    public String hello() {
        return "Hello, World!";
    }
}

在这个例子中,只有/hello路径允许跨域请求。

总结

以上三种方式都可以用来配置Spring Boot中的CORS策略。你可以根据具体需求选择合适的方式来配置CORS。

推荐阅读:
  1. 探索SpringBoot中的SpringMVC
  2. Spring Cloud Gateway - 扩展

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

spring boot

上一篇:Spring Boot性能瓶颈分析与优化

下一篇:Spring Boot集成Zookeeper服务发现

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》