123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.ruoyi.framework.config;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
- import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
- import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
- /**
- * 通用配置
- *
- * @author ruoyi
- */
- @Configuration
- public class ResourcesConfig implements WebMvcConfigurer
- {
- /**
- * 首页地址
- */
- @Value("${shiro.user.indexUrl}")
- private String indexUrl;
- /**
- * 默认首页的设置,当输入域名是可以自动跳转到默认指定的网页
- */
- @Override
- public void addViewControllers(ViewControllerRegistry registry)
- {
- registry.addViewController("/").setViewName("forward:" + indexUrl);
- }
- @Override
- public void addResourceHandlers(ResourceHandlerRegistry registry)
- {
- /** 头像上传路径 */
- registry.addResourceHandler("/profile/**").addResourceLocations("file:" + RuoYiConfig.getProfile());
- /** swagger配置 */
- registry.addResourceHandler("swagger-ui.html").addResourceLocations("classpath:/META-INF/resources/");
- registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
- }
- }
|