奇怪了 我昨天没有升级IDEA 版本的还是可以的 今天升级完 打开项目跑起来就报跨域问题了 难道是跨域配置失效了吗
package com.zw.wiki.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
* 描述:
*
* @author zw
* @create 2021-09-08 8:54 PM
* 用来解决跨域问题
*/
@Configuration
public class CorsConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOriginPatterns("*") //allowedOrigin 以前的版本的
.allowedHeaders(CorsConfiguration.ALL)
.allowedMethods(CorsConfiguration.ALL)
.allowCredentials(true)
.maxAge(3600); // 1小时内不需要再预检发OPTIONS请求
}
}
这个工具类跟老师的代码 一模一样 怎么会出现这种问题了