后端---SpringBoot解决跨域问题

package com.zhaoguo.toolcase.util;

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("http://localhost:8080","http://localhost","null")
                .allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")
                .maxAge(3600)
                .allowCredentials(true);
    }


}

你可能感兴趣的:(跨域,web,spring,boot)