springboot整合freemarker springboot整合freemarker详解

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

springboot整合freemarker springboot整合freemarker详解

张楠楠   2021-03-24 我要评论
想了解springboot整合freemarker详解的相关内容吗,张楠楠在本文为您仔细讲解springboot整合freemarker的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:springboot整合freemarker,springboot,freemarker,下面大家一起来学习吧。

前提:

开发工具: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页面

 

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们