spring boot 配置默认欢迎页
程序员文章站
2022-07-04 09:15:20
...
@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; } }
可以根据需求拆分成两个类。
上一篇: [转]android解决apk编译方法数超过64k的问题
下一篇: Redis 性能测试
推荐阅读
-
Spring Boot使用profile如何配置不同环境的配置文件
-
Spring boot中@Conditional和spring boot的自动配置实例详解
-
Spring Boot Web应用程序配置详解
-
spring boot开发遇到坑之spring-boot-starter-web配置文件使用教程
-
spring boot使用自定义配置的线程池执行Async异步任务
-
spring boot实战之内嵌容器tomcat配置
-
Spring Boot + Mybatis多数据源和动态数据源配置方法
-
Spring Boot 配置随机数的技巧代码详解
-
详解Spring Boot下Druid连接池的使用配置分析
-
SpringBoot入坑笔记之spring-boot-starter-web 配置文件的使用