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