欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

springboot整合freemarker详解

程序员文章站 2024-02-19 22:46:10
前提: 开发工具:idea 框架:spring boot、maven 1、pom文件添加依赖 &...

前提:

开发工具:idea

框架:spring boot、maven

1、pom文件添加依赖

    <dependency>
      <groupid>org.springframework.boot</groupid>
      <artifactid>spring-boot-starter-freemarker</artifactid>
      <version>1.4.1.release</version>
    </dependency>

2、新建spring web项目,会自动生成application.properties.

使用application.properties配置文件之后,spring boot启动时,会自动把配置信息读取到spring容器中,并覆盖spring boot的默认配置。

3、在配置文件中,设置以下两个参数

#设定ftl文件路径
spring.freemarker.template-loader-path=classpath:/templates
#设定静态文件路径,js,css等
spring.mvc.static-path-pattern=/static/**

controller跳转页面如下:

templates/action/list.ftl页面

 springboot整合freemarker详解

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。