美文网首页
Springboot使用freemarker作为view视图

Springboot使用freemarker作为view视图

作者: 淡定丶说的是 | 来源:发表于2017-06-02 15:16 被阅读171次

添加FreeMaker依赖

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

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

在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视图

      本文链接:https://www.haomeiwen.com/subject/pudufxtx.html