| | |
| | | package com.ruoyi.framework.config;
|
| | |
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.context.annotation.Bean;
|
| | | import org.springframework.context.annotation.Configuration;
|
| | | 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.InterceptorRegistry;
|
| | | import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
| | | import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
| | |
| | | registry.addResourceHandler(Constants.RESOURCE_PREFIX + "/**").addResourceLocations("file:" + RuoYiConfig.getProfile() + "/");
|
| | |
|
| | | /** swagger配置 */
|
| | | registry.addResourceHandler("swagger-ui.html").addResourceLocations("classpath:/META-INF/resources/");
|
| | | registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
|
| | | registry.addResourceHandler("/swagger-ui/**").addResourceLocations("classpath:/META-INF/resources/webjars/springfox-swagger-ui/");
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | {
|
| | | registry.addInterceptor(repeatSubmitInterceptor).addPathPatterns("/**");
|
| | | }
|
| | | } |
| | |
|
| | | /**
|
| | | * 跨域配置
|
| | | */
|
| | | @Bean
|
| | | public CorsFilter corsFilter()
|
| | | {
|
| | | UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
| | | CorsConfiguration config = new CorsConfiguration();
|
| | | config.setAllowCredentials(true);
|
| | | // 设置访问源地址
|
| | | config.addAllowedOrigin("*");
|
| | | // 设置访问源请求头
|
| | | config.addAllowedHeader("*");
|
| | | // 设置访问源请求方法
|
| | | config.addAllowedMethod("*");
|
| | | // 对接口配置跨域设置
|
| | | source.registerCorsConfiguration("/**", config);
|
| | | return new CorsFilter(source);
|
| | | }
|
| | | }
|