源代码为

package com.duowenjia.springboottest2.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 CorsConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")
                .allowedMethods("GET","HEAD","POST","DELETE","OPTIONS")
                .allowCredentials(true)
                .maxAge(3600)
                .allowedHeaders("*");
    }
}

解决办法为:

将allowedOrigins("*")改为allowedOriginPatterns("*")

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-17
  • 2021-10-01
  • 2021-06-17
  • 2021-10-27
  • 2021-06-04
猜你喜欢
  • 2021-05-24
  • 2021-12-24
  • 2021-05-16
  • 2022-12-23
  • 2021-11-06
  • 2021-05-20
  • 2021-06-02
相关资源
相似解决方案