在Springboot后端解决跨域问题。

  1. 首先在Springboot项目中创建一个类。在类中创建一个java文件。如图我的格式:

在CrosConfig中添加如下代码:

package com.example.springboot.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 CrosConfig implements WebMvcConfigurer {

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

 

有问题   及时回复

Logo

前往低代码交流专区

更多推荐