package com.kum.config; import org.springframework.context.annotation.Configuration; import org.springframework.core.Ordered; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; import org.springframework.web.cors.CorsConfiguration; import org.springframework.web.cors.UrlBasedCorsConfigurationSource; import org.springframework.web.filter.CorsFilter; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import java.util.Arrays; import java.util.List; @Component @Order(Ordered.HIGHEST_PRECEDENCE) public class AjaxCorsFilter extends CorsFilter { public AjaxCorsFilter() { super(configurationSource()); } private static UrlBasedCorsConfigurationSource configurationSource() { CorsConfiguration corsConfig = new CorsConfiguration(); List<String> allowedHeaders = Arrays.asList("x-auth-token", "content-type", "X-Requested-With", "XMLHttpRequest"); List<String> exposedHeaders = Arrays.asList("x-auth-token", "content-type", "X-Requested-With", "XMLHttpRequest"); List<String> allowedMethods = Arrays.asList("POST", "GET", "DELETE", "PUT", "OPTIONS"); List<String> allowedOrigins = Arrays.asList("*"); corsConfig.setAllowedHeaders(allowedHeaders); corsConfig.setAllowCredentials(true); corsConfig.setAllowedMethods(allowedMethods); corsConfig.setAllowedOrigins(allowedOrigins); corsConfig.setExposedHeaders(exposedHeaders); corsConfig.setMaxAge(36000L); corsConfig.setAllowCredentials(true); UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); source.registerCorsConfiguration("/**", corsConfig); return source; } }
最近下载更多
citybird LV4
11月18日
sodkj123 LV16
10月8日
ma406805131 LV15
5月7日
jsjsjsjsbdbshns LV1
4月27日
860421 LV3
4月18日
YhXyHx523 LV6
4月13日
denglu123321 LV4
4月11日
微信网友_6444139264921600 LV6
4月10日
dapeng0011 LV15
4月6日
玖零定制问题修复 LV34
4月4日
最近浏览更多
citybird LV4
11月18日
15953970869 LV6
11月9日
oceanchen LV14
10月30日
zwn258000
10月24日
暂无贡献等级
charleswang LV7
10月21日
withyouatdusk LV2
10月19日
微信网友_5795397379264512 LV1
10月18日
daisys LV2
10月14日
lqzixi LV4
10月9日
sodkj123 LV16
10月8日