java
您现在所在的位置:首页>企业动态>java

SpringBoot 允许跨域配置

编辑:学到牛牛IT培训    发布日期: 2022-03-16 09:57:34  

之前的接口一直都是 App 客户端调用,不存在跨域问题。

这次是接口需要让 web 端调用,遇到了跨域问题。

解决只需要在 SpringBoot 中添加一个配置类即可。

package com.sktk.question.config;

import org.springframework.beans.factory.annotation.Configurable;

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

    @Override

    public void addCorsMappings(CorsRegistry registry) {

        registry.addMapping("/**")

                .allowedOrigins("*")

                .allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS")

                .allowCredentials(true)

                .maxAge(3600)

                .allowedHeaders("*");

    }

}

免费试学
课程好不好,不如实地听一听

封闭学习

2

1

18180749853

蜀ICP备2021001672号

在线咨询 免费试听VIP课程