标签:map put rgba 工具类 conf configure mvcc style als
@Configuration public class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowedOrigins("*") .allowCredentials(true) .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") .maxAge(3600); } }
标签:map put rgba 工具类 conf configure mvcc style als
原文地址:https://www.cnblogs.com/heikedeblack/p/14980771.html