|
@@ -1,43 +0,0 @@
|
|
|
-package com.yh.saas.plugin.yiliangyiyun.util;
|
|
|
-
|
|
|
-import org.springframework.context.annotation.Bean;
|
|
|
-import org.springframework.context.annotation.Configuration;
|
|
|
-import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
|
|
|
-import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
|
|
|
-import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
|
|
|
-import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
|
|
|
-import org.springframework.web.servlet.view.InternalResourceViewResolver;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author lx
|
|
|
- */
|
|
|
-@Configuration
|
|
|
-public class PathConfig extends WebMvcConfigurationSupport {
|
|
|
-
|
|
|
- @Bean
|
|
|
- public InternalResourceViewResolver viewResolver() {
|
|
|
- InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
|
|
|
- viewResolver.setPrefix("/classes/templates/");
|
|
|
- viewResolver.setSuffix(".html");
|
|
|
- return viewResolver;
|
|
|
- }
|
|
|
- @Override
|
|
|
- public void addViewControllers(ViewControllerRegistry registry) {
|
|
|
- registry.addViewController("/").setViewName("index");
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|
|
- registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
|
|
|
- registry.addResourceHandler("/img/**").addResourceLocations("file:/Volumes/work/upload/");
|
|
|
- //阿里云(映射路径去除盘符)
|
|
|
- //registry.addResourceHandler("/ueditor/image/**").addResourceLocations("/upload/image/");
|
|
|
- //registry.addResourceHandler("/ueditor/video/**").addResourceLocations("/upload/video/");
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
|
|
|
- configurer.enable();
|
|
|
- }
|
|
|
-
|
|
|
-}
|