| | |
| | | package com.ruoyi.framework.config;
|
| | |
|
| | | import java.util.concurrent.TimeUnit;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.context.annotation.Bean;
|
| | | import org.springframework.context.annotation.Configuration;
|
| | | import org.springframework.http.CacheControl;
|
| | | import org.springframework.web.cors.CorsConfiguration;
|
| | | import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
|
| | | import org.springframework.web.filter.CorsFilter;
|
| | |
| | | public void addResourceHandlers(ResourceHandlerRegistry registry)
|
| | | {
|
| | | /** 本地文件上传路径 */
|
| | | registry.addResourceHandler(Constants.RESOURCE_PREFIX + "/**").addResourceLocations("file:" + RuoYiConfig.getProfile() + "/");
|
| | | 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/")
|
| | | .setCacheControl(CacheControl.maxAge(5, TimeUnit.HOURS).cachePublic());
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | @Bean
|
| | | public CorsFilter corsFilter()
|
| | | {
|
| | | UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
| | | CorsConfiguration config = new CorsConfiguration();
|
| | | config.setAllowCredentials(true);
|
| | | // 设置访问源地址
|
| | | config.addAllowedOrigin("*");
|
| | | config.addAllowedOriginPattern("*");
|
| | | // 设置访问源请求头
|
| | | config.addAllowedHeader("*");
|
| | | // 设置访问源请求方法
|
| | | config.addAllowedMethod("*");
|
| | | // 对接口配置跨域设置
|
| | | // 有效期 1800秒
|
| | | config.setMaxAge(1800L);
|
| | | // 添加映射路径,拦截一切请求
|
| | | UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
| | | source.registerCorsConfiguration("/**", config);
|
| | | // 返回新的CorsFilter
|
| | | return new CorsFilter(source);
|
| | | }
|
| | | }
|