|
|
@@ -2,15 +2,18 @@ package com.kym.admin.config;
|
|
|
|
|
|
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;
|
|
|
|
|
|
@Configuration
|
|
|
public class WebcontextConfig implements WebMvcConfigurer {
|
|
|
|
|
|
+ @Override
|
|
|
+ public void addViewControllers(ViewControllerRegistry registry) {
|
|
|
+ registry.addViewController("/h5").setViewName("forward:/h5/index.html");
|
|
|
+ registry.addViewController("/h5/").setViewName("forward:/h5/index.html");
|
|
|
+ }
|
|
|
|
|
|
- /**
|
|
|
- * 静态资源文件配置(前端工程)
|
|
|
- */
|
|
|
@Override
|
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
|
|
registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
|