Springboot使用freemarker作为view视图

添加FreeMaker依赖

首先在pom.xml中添加FreeMaker的依赖

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

在application.yml中增加FreeMarker的配置

spring:
  freemarker:
    allow-request-override: false
    cache: false
    check-template-location: true
    charset: UTF-8
    content-type: text/html
    expose-request-attributes: false
    expose-session-attributes: false
    expose-spring-macro-helpers: false

你可能感兴趣的:(Springboot使用freemarker作为view视图)