package com.net.phone.recharge.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 MyWebMvcConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedHeaders("*").allowedMethods("*")
.maxAge(1800)
.allowedOrigins("*");
}
}
springboot简单解决跨域问题
最新推荐文章于 2024-11-02 22:54:18 发布