1. 程式人生 > >springboot配置freemarker使用application.properties

springboot配置freemarker使用application.properties

一、Maven新增引入

<!-- freemarker -->
<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>

二、在application.properties檔案中配置freemarker

spring.freemarker.template-loader-path=classpath:/templates/
spring.freemarker.charset=utf-8
spring.freemarker.cache=false
spring.freemarker.expose-request-attributes=true
spring.freemarker.expose-session-attributes=true
spring.freemarker.expose-spring-macro-helpers=true
spring.freemarker.suffix=.ftl

三、目錄結構

四、控制器使用@Conntroller註解

五、頁面部分

六、配置完成 執行