package com.carmaintenance.config; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * Web配置 - CORS跨域配置 */ @Configuration public class WebConfig implements WebMvcConfigurer { @Value("${cors.allowed-origins}") private String allowedOrigins; @Value("${cors.allowed-methods}") private String allowedMethods; @Value("${cors.allowed-headers}") private String allowedHeaders; @Value("${cors.allow-credentials}") private boolean allowCredentials; @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowedOriginPatterns(allowedOrigins.split(",")) .allowedMethods(allowedMethods.split(",")) .allowedHeaders(allowedHeaders.split(",")) .allowCredentials(allowCredentials) .maxAge(3600); } }