详解如何配置springboot跳转html页面
本文主要介绍了如何配置springboot跳转html页面,分享给大家,具体如下:
1.首先在pom文件中引入模板引擎jar包,即:
org.springframework.boot spring-boot-starter-thymeleaf
2.在application.properties中配置模板引擎
spring.thymeleaf.prefix=classpath:/templates/
是让controller层到templates文件夹寻找xx.html(src/main/resources/templates)
3.在templates下建立index.html文件
Title 123456789