spring boot 配置默认欢迎页
程序员文章站
2022-07-04 09:14:50
...
@Configuration @Controller public class IndexConfig extends WebMvcConfigurerAdapter { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/").setViewName("forward:/index.htm"); registry.setOrder(Ordered.HIGHEST_PRECEDENCE); super.addViewControllers(registry); } @RequestMapping(value = "/index.htm", method = RequestMethod.GET) public ModelAndView index(HttpServletRequest request, HttpServletResponse response) throws IOException { ModelAndView view = new ModelAndView(); view.setViewName("index"); return view; } }
可以根据需求拆分成两个类。
上一篇: spring boot中thymeleaf常用配置
下一篇: 重学JS 系列:聊聊继承(推荐)
推荐阅读
-
Spring Boot 2.0 设置网站默认首页的实现代码
-
Spring Boot打包部署和环境配置详解
-
Spring Boot 配置 IDEA和DevTools 热部署的方法
-
Spring Boot + Vue 前后端分离开发之前端网络请求封装与配置
-
Spring Boot配置AOP打印日志的全过程
-
spring boot Logging的配置以及使用详解
-
Spring Boot Security配置教程
-
Spring Boot 配置MySQL数据库重连的操作方法
-
Spring Boot配置过滤器的两种方式
-
spring boot application properties配置实例代码详解