File was renamed from hangzhoumesParent/common/springsecurity/src/main/java/com/mes/common/config/MyCorsConfig.java |
| | |
| | | package com.mes.common.config; |
| | | package com.mes.config; |
| | | |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | import org.springframework.web.cors.CorsConfiguration; |
| | | import org.springframework.web.cors.reactive.CorsWebFilter; |
| | | import org.springframework.web.cors.reactive.UrlBasedCorsConfigurationSource; |
| | | import org.springframework.web.servlet.config.annotation.CorsRegistry; |
| | | import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; |
| | | |
| | | /** |
| | | * @Author : zhoush |
| | |
| | | */ |
| | | @Configuration |
| | | public class MyCorsConfig { |
| | | |
| | | @Bean |
| | | public WebMvcConfigurer corsConfigurer() { |
| | | return new WebMvcConfigurer() { |
| | | @Override |
| | | public void addCorsMappings(CorsRegistry registry) { |
| | | registry.addMapping("/**"); |
| | | } |
| | | }; |
| | | } |
| | | public CorsWebFilter corsFilter() { |
| | | |
| | | @Bean |
| | | public CorsWebFilter corsWebFilter() { |
| | | UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); |
| | | |
| | | CorsConfiguration corsConfiguration = new CorsConfiguration(); |
| | | |
| | | //1、配置跨域 |
| | | //允许哪些头跨域 |
| | | corsConfiguration.addAllowedHeader("*"); |
| | | // 允许哪些方式跨域 get post delete 等方式 |
| | | corsConfiguration.addAllowedMethod("*"); |
| | | //允许哪些请求来源跨域 * 任意来源 |
| | | corsConfiguration.addAllowedOrigin("*"); |
| | | // 是否允许携带cooker跨域 |
| | | corsConfiguration.setAllowCredentials(true); |
| | | |
| | | //注册跨越配置 /**配置请求路径 |
| | | source.registerCorsConfiguration("/**", corsConfiguration); |
| | | return new CorsWebFilter(source); |
| | | } |
| | | |
| | | |
| | | } |