package com.mes.common.config;
|
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
/**
|
* @Author : zhoush
|
* @Date: 2024/3/25 14:13
|
* @Description:
|
*/
|
@Configuration
|
public class MyCorsConfig {
|
|
@Bean
|
public WebMvcConfigurer corsConfigurer() {
|
return new WebMvcConfigurer() {
|
@Override
|
public void addCorsMappings(CorsRegistry registry) {
|
registry.addMapping("/**");
|
}
|
};
|
}
|
}
|