温馨提示×

温馨提示×

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

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

Spring Boot配置跨域资源共享

发布时间:2024-11-15 13:46:13 来源:亿速云 阅读:78 作者:小樊 栏目:编程语言

在Spring Boot中配置跨域资源共享(CORS)非常简单。你可以通过以下几种方法来实现:

方法一:使用@CrossOrigin注解

在你的Controller类或方法上添加@CrossOrigin注解,就可以实现跨域资源共享。

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") // 允许来自指定源的请求
    @GetMapping("/hello")
    public String hello() {
        return "Hello, World!";
    }
}

方法二:全局配置CORS

你可以通过实现WebMvcConfigurer接口来全局配置CORS。

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 WebConfig implements WebMvcConfigurer {

    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**") // 允许所有路径
                .allowedOrigins("*") // 允许所有源
                .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // 允许所有方法
                .allowedHeaders("*") // 允许所有头部
                .allowCredentials(true); // 允许发送Cookie
    }
}

方法三:使用@EnableWebMvcWebMvcConfigurer

如果你需要更细粒度的控制,可以使用@EnableWebMvc注解来禁用Spring Boot的默认CORS配置,然后手动配置CORS。

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

@Configuration
@EnableWebMvc // 禁用默认的CORS配置
public class WebConfig implements WebMvcConfigurer {

    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**") // 允许所有路径
                .allowedOrigins("*") // 允许所有源
                .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // 允许所有方法
                .allowedHeaders("*") // 允许所有头部
                .allowCredentials(true); // 允许发送Cookie
    }
}

方法四:使用Filter

你也可以通过配置一个Filter来实现CORS。

import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.filter.CorsFilter;

@Configuration
public class WebConfig {

    @Bean
    public FilterRegistrationBean<CorsFilter> corsFilter() {
        FilterRegistrationBean<CorsFilter> registrationBean = new FilterRegistrationBean<>();
        registrationBean.setFilter(new CorsFilter());
        registrationBean.addUrlPatterns("/*"); // 允许所有路径
        registrationBean.setAllowedOrigins("*"); // 允许所有源
        registrationBean.setAllowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS"); // 允许所有方法
        registrationBean.setAllowedHeaders("*"); // 允许所有头部
        registrationBean.setAllowCredentials(true); // 允许发送Cookie
        return registrationBean;
    }
}

以上就是在Spring Boot中配置跨域资源共享的几种方法。你可以根据自己的需求选择合适的方法来实现。

向AI问一下细节

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

AI