(七)SpringBoot模板引擎Freemaker、thymeleaf

一、Freemaker

1.pom 文件添加


2.配置文件.properties添加相关配置信息


3.创建Controller


4.创建页面


二、thymeleaf

1.pom添加

    org.springframework.boot

    spring-boot-starter-thymeleaf

2.配置文件.properties添加相关配置信息

web.upload-path=****

spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/test/,file:${web.upload-path},classpath:/templates/


3.创建Controller


4.创建html

一定要以这种方式获取

测试内容

,而Freemaker 是这种方式获取的

${setting.domain}

记得一定要分清楚。

你可能感兴趣的:((七)SpringBoot模板引擎Freemaker、thymeleaf)