• SpringBoot解决跨域办法


    package com.yang.exchange.wallet.eth.config;

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

    @Configuration
    @SuppressWarnings("SpringJavaAutowiredFieldsWarningInspection")
    public class AppConfig implements WebMvcConfigurer {

    @Override
    public void addCorsMappings(CorsRegistry registry) {
    registry.addMapping("/**") // 拦截所有的请求
    .allowedOrigins("*") // 可跨域的域名,可以为 *
    .allowCredentials(true)
    .allowedMethods("*") // 允许跨域的方法,可以单独配置
    .allowedHeaders("*"); // 允许跨域的请求头,可以单独配置
    }
    }

  • 相关阅读:
    jsp作业第二次
    软件测试课堂练习
    第七次作业
    第六次作业
    第五次作业
    第四次作业
    第七周作业
    jsp第六周作业
    jsp第四周作业
    jsp第二次作业
  • 原文地址:https://www.cnblogs.com/wangguanyi/p/15407275.html
Copyright © 2020-2023  润新知