SpringBoot 结合 Thymeleaf 进行页面的跳转
Posted it-noob
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 结合 Thymeleaf 进行页面的跳转相关的知识,希望对你有一定的参考价值。
1、引入thymeleaf依赖
<!--thymeleaf--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
2、在application.yml进行thymeleaf配置
# 配置页面地址
spring:
thymeleaf:
prefix: classpath:/templates/
3、编写Controller
// 服务启动自动跳转首页 @RequestMapping(value = {"/","index"}) public String index(){ return "index"; }
文件结构:
访问localhost:8080 或者 localhost:8080/index
以上是关于SpringBoot 结合 Thymeleaf 进行页面的跳转的主要内容,如果未能解决你的问题,请参考以下文章
收藏夹吃灰系列:Springboot配置Thymeleaf实现静态页面访问 | 超级详细,建议收藏!
收藏夹吃灰系列:Springboot配置Thymeleaf实现静态页面访问 | 超级详细,建议收藏!