springboot 整合模板引擎

一、springboot 整合freemarker
1、首先在pom.xml文件中引入freemarker 模板依赖


org.springframework.boot
spring-boot-starter-freemarker

2、在application.properties文件中进行freemarker的基本配置


springboot 整合模板引擎_第1张图片
image.png

3、在src/main/resources/templates下新建freemarker目录以及index.ftl文件。


springboot 整合模板引擎_第2张图片
image.png

4、在src/main/java中com.imooc.controller包中新建FreemarkerController.java
springboot 整合模板引擎_第3张图片
image.png

二、springboot 整合thymeleaf
1、首先在pom.xml文件中引入thymeleaf 模板依赖


org.springframework.boot
spring-boot-starter-freemarker

2、在application.properties文件中进行thymeleaf的基本配置


springboot 整合模板引擎_第4张图片
image.png

3、在src/main/resources/templates下新建thymeleaf目录以及index.html文件。


springboot 整合模板引擎_第5张图片
image.png

4、在src/main/java中com.imooc.controller包中新建ThymeleafController.java
springboot 整合模板引擎_第6张图片
image.png

附源码地址:https://github.com/leechenxiang/imooc-springboot-starter

你可能感兴趣的:(springboot 整合模板引擎)