Spring Boot使用模板freemarker【从零开始学Spring Boot(转)

视频&交流平台

à SpringBoot网易云课堂视频

http://study.163.com/course/introduction.htm?courseId=1004329008

à Spring Boot交流平台

http://412887952-qq-com.iteye.com/blog/2321532

【原创文章,转载请注明出处】

103. Spring Boot Freemarker特别篇之contextPath【从零开始学Spring Boot】

最近有好久没有更新博客了,感谢小伙伴的默默支持,不知道是谁又打赏了我一个小红包,谢谢。

今天我们讲讲怎么在Spring Boot中使用模板引擎freemarker,先看看今天的大纲:

写道

(1) freemarker介绍;
(2) 新建spring-boot-freemarker工程;
(3) 在pom.xml引入相关依赖;
(4) 编写启动类;
(5) 编写模板文件hello.ftl;
(6) 编写访问类HelloController;
(7) 测试;
(8) freemarker配置;
(9) freemarker常用语法;
(10) freemarker layout 布局

(1) freemarker介绍;

FreeMarker是一款模板引擎: 即一种基于模板和要改变的数据,   并用来生成输出文本(HTML网页、电子邮件、配置文件、源代码等)的通用工具。       它不是面向最终用户的,而是一个Java类库,是一款程序员可以嵌入他们所开发产品的组件。

(2) 新建spring-boot-freeMarker工程;

我们新建一个maven工程,取名为:spring-boot-freemarker

(3) 在pom.xml引入相关依赖;

这里使用freeMarker需要引入相关依赖包:spring-boot-starter-freemarker,

Xml代码  

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.kfit</groupId>
  5. <artifactId>spring-boot-velocity</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>spring-boot-velocity</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <!-- jdk版本号,angel在这里使用1.8,大家修改为大家本地配置的jdk版本号即可 -->
  13. <java.version>1.8</java.version>
  14. </properties>
  15. <!--
  16. spring boot 父节点依赖,
  17. 引入这个之后相关的引入就不需要添加version配置,
  18. spring boot会自动选择最合适的版本进行添加。
  19. -->
  20. <parent>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-parent</artifactId>
  23. <version>1.4.1.RELEASE</version><!-- 1.4.1.RELEASE , 1.3.3.RELEASE-->
  24. </parent>
  25. <dependencies>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <!-- spring boot web支持:mvc,aop... -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <!-- 引入freeMarker的依赖包. -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-freemarker</artifactId>
  40. </dependency>
  41. </dependencies>
  42. </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  <modelVersion>4.0.0</modelVersion>   <groupId>com.kfit</groupId>  <artifactId>spring-boot-velocity</artifactId>  <version>0.0.1-SNAPSHOT</version>  <packaging>jar</packaging>   <name>spring-boot-velocity</name>  <url>http://maven.apache.org</url>   <properties>    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>     <!-- jdk版本号,angel在这里使用1.8,大家修改为大家本地配置的jdk版本号即可 -->    <java.version>1.8</java.version>  </properties>     <!--       spring boot 父节点依赖,       引入这个之后相关的引入就不需要添加version配置,       spring boot会自动选择最合适的版本进行添加。     -->    <parent>       <groupId>org.springframework.boot</groupId>       <artifactId>spring-boot-starter-parent</artifactId>       <version>1.4.1.RELEASE</version><!-- 1.4.1.RELEASE , 1.3.3.RELEASE-->    </parent>   <dependencies>    <dependency>      <groupId>junit</groupId>      <artifactId>junit</artifactId>      <scope>test</scope>    </dependency>           <!-- spring boot web支持:mvc,aop... -->    <dependency>       <groupId>org.springframework.boot</groupId>       <artifactId>spring-boot-starter-web</artifactId>    </dependency>       <!-- 引入freeMarker的依赖包. -->    <dependency>           <groupId>org.springframework.boot</groupId>          <artifactId>spring-boot-starter-freemarker</artifactId>    </dependency>     </dependencies></project>

(4) 编写启动类;

启动类没有什么特别之处,不过多介绍,请看代码:

Java代码  

  1. package com.kfit;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. /**
  5. *
  6. * @author Angel --守护天使
  7. * @version v.0.1
  8. * @date 2016年10月4日
  9. */
  10. @SpringBootApplication
  11. public class App {
  12. publicstaticvoid main(String[] args) {
  13. SpringApplication.run(App.class, args);
  14. }
  15. }
package com.kfit; import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication; /** * * @author Angel --守护天使 * @version v.0.1 * @date 2016年10月4日 */@SpringBootApplicationpublic class App {    publicstaticvoid main(String[] args) {       SpringApplication.run(App.class, args);    }}

(5) 编写模板文件hello.ftl;

编写一个hello.ftl文件,此文件的路径在src/main/resources/templates下,其中hello.ftl文件的内容如下:

Html代码  

  1. <html>
  2. <body>
  3. welcome ${name}  to freemarker!
  4. </body>
  5. </html>
<html> <body>     welcome ${name}  to freemarker!</body> </html>

(6) 编写访问类HelloController;

有了模板文件之后,我们需要有个Controller控制类,能够访问到hello.ftl文件,这里也很简单,具体看如下代码:

Java代码  

  1. package com.kfit.demo.web;
  2. import java.util.Map;
  3. import org.springframework.stereotype.Controller;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. /**
  6. * 测试velocity;
  7. * @author Angel --守护天使
  8. * @version v.0.1
  9. * @date 2016年10月4日
  10. */
  11. @Controller
  12. public class HelloController {
  13. @RequestMapping("/hello")
  14. public String hello(Map<String,Object> map){
  15. map.put("name", "[Angel -- 守护天使]");
  16. return "hello";
  17. }
  18. }
package com.kfit.demo.web; import java.util.Map; import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping; /** * 测试velocity; * @author Angel --守护天使 * @version v.0.1 * @date 2016年10月4日 */@Controllerpublic class HelloController {       @RequestMapping("/hello")    public String hello(Map<String,Object> map){       map.put("name", "[Angel -- 守护天使]");       return "hello";    }   }

(7) 测试;

好了,到这里,我们就可以启动我们的程序进行测试了,访问地址:

http://127.0.0.1:8080/hello ,如果你在浏览器中看到如下信息:

welcome [Angel -- 守护天使] to freemarker!

那么说明你的demo ok 了。

(8) freemarker配置;

在spring boot的application.properties属性文件中为freemarker提供了一些常用的配置,如下:

########################################################

###FREEMARKER (FreeMarkerAutoConfiguration)

########################################################

spring.freemarker.allow-request-override=false

spring.freemarker.cache=true

spring.freemarker.check-template-location=true

spring.freemarker.charset=UTF-8

spring.freemarker.content-type=text/html

spring.freemarker.expose-request-attributes=false

spring.freemarker.expose-session-attributes=false

spring.freemarker.expose-spring-macro-helpers=false

#spring.freemarker.prefix=

#spring.freemarker.request-context-attribute=

#spring.freemarker.settings.*=

#spring.freemarker.suffix=.ftl

#spring.freemarker.template-loader-path=classpath:/templates/ #comma-separated list

#spring.freemarker.view-names= # whitelist of view names that can be resolved

(9) freemarker常用语法;

freemarker的语法并不是本节的重点,这里还是简单的介绍下几个常用的if else,list;

首先我们改造下HelloController的hello方法

Java代码  

  1. @RequestMapping("/hello")
  2. public String hello(Map<String,Object> map){
  3. map.put("name", "[Angel -- 守护天使]");
  4. map.put("gender",1);//gender:性别,1:男;0:女;
  5. List<Map<String,Object>> friends =new ArrayList<Map<String,Object>>();
  6. Map<String,Object> friend = new HashMap<String,Object>();
  7. friend.put("name", "张三");
  8. friend.put("age", 20);
  9. friends.add(friend);
  10. friend = new HashMap<String,Object>();
  11. friend.put("name", "李四");
  12. friend.put("age", 22);
  13. friends.add(friend);
  14. map.put("friends", friends);
  15. return "hello";
  16. }
@RequestMapping("/hello")   public String hello(Map<String,Object> map){       map.put("name", "[Angel -- 守护天使]");       map.put("gender",1);//gender:性别,1:男;0:女;             List<Map<String,Object>> friends =new ArrayList<Map<String,Object>>();       Map<String,Object> friend = new HashMap<String,Object>();       friend.put("name", "张三");       friend.put("age", 20);       friends.add(friend);       friend = new HashMap<String,Object>();       friend.put("name", "李四");       friend.put("age", 22);       friends.add(friend);       map.put("friends", friends);       return "hello";    }

这里我们返回了gender和friends的列表;

接下来我们看看怎么在freemarker进行展示呢?

Html代码  

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
  3. xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
  4. <head>
  5. <title>Hello World!</title>
  6. </head>
  7. <body>
  8. <p>
  9. welcome ${name}  to freemarker!
  10. </p>
  11. <p>性别:
  12. <#if gender==0>
  13. <#elseif gender==1>
  14. <#else>
  15. 保密
  16. </#if>
  17. </p>
  18. <h4>我的好友:</h4>
  19. <#list friends as item>
  20. 姓名:${item.name} , 年龄${item.age}
  21. <br>
  22. </#list>
  23. </body>
  24. </html>
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"      xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">    <head>        <title>Hello World!</title>    </head>    <body>       <p>           welcome ${name}  to freemarker!       </p>                         <p>性别:           <#if gender==0>              女           <#elseif gender==1>              男           <#else>              保密              </#if>        </p>                   <h4>我的好友:</h4>       <#list friends as item>           姓名:${item.name} , 年龄${item.age}           <br>       </#list>          </body></html>

(10) freemarker layout

freemarker layout主要处理具有相同内容的页面,比如每个网站的header和footer页面。

freemarker 的布局主要常见的两种方式是#import(“文件路径”)和#include(“文件路径”),其中import和include的区别在于,include常用于公共部分的页面,如果要使用<#assign username=“张三”>涉及到内部函数以及变量声明之类的,使用import进行导入,如果在import中的页面含有页面当前将不会进行渲染。   我们编写一个header和footer,其中的header使用include引入,footer页面也使用include引入。(当然freemarker 还有别的布局方式,这里只是介绍一种,请自行学习研究)

header.ftl内容:

Html代码  

  1. <header>
  2. This is a header,welcome  ${name} to my web site!
  3. </header>
  4. <hr>
<header>    This is a header,welcome  ${name} to my web site!</header><hr>

footer.ftl内容:

Html代码  

  1. <hr>
  2. <footer>
  3. This is a footer,welcome  ${name} to my web site!
  4. </footer>
<hr><footer>    This is a footer,welcome  ${name} to my web site!</footer>

修改hello.ftl:

Html代码  

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
  3. xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
  4. <head>
  5. <title>Hello World!</title>
  6. </head>
  7. <body>
  8. <#include "/header.ftl" >
  9. <p>
  10. welcome ${name}  to freemarker!
  11. </p>
  12. <p>性别:
  13. <#if gender==0>
  14. <#elseif gender==1>
  15. <#else>
  16. 保密
  17. </#if>
  18. </p>
  19. <h4>我的好友:</h4>
  20. <#list friends as item>
  21. 姓名:${item.name} , 年龄${item.age}
  22. <br>
  23. </#list>
  24. <#include "/footer.ftl" >
  25. </body>
  26. </html>
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"      xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">    <head>        <title>Hello World!</title>    </head>    <body>           <#include "/header.ftl" >              <p>           welcome ${name}  to freemarker!       </p>                         <p>性别:           <#if gender==0>              女           <#elseif gender==1>              男           <#else>              保密              </#if>        </p>                   <h4>我的好友:</h4>       <#list friends as item>           姓名:${item.name} , 年龄${item.age}           <br>       </#list>                   <#include "/footer.ftl" >    </body></html>

到这里就ok了,我们访问/hello页面,应该会看到如下图的效果:

103. Spring Boot Freemarker特别篇之contextPath【从零开始学Spring Boot】

视频&交流平台

à SpringBoot网易云课堂视频

http://study.163.com/course/introduction.htm?courseId=1004329008

à Spring Boot交流平台

http://412887952-qq-com.iteye.com/blog/2321532

原文地址:https://www.cnblogs.com/jpfss/p/8309996.html

时间: 2024-10-08 10:18:11

Spring Boot使用模板freemarker【从零开始学Spring Boot(转)的相关文章

21. Spring Boot过滤器、监听器【从零开始学Spring Boot】

转载:http://blog.csdn.net/linxingliang/article/details/52069490 上一篇文章已经对定义Servlet 的方法进行了说明,过滤器(Filter)和 监听器(Listener)的注册方法和 Servlet 一样,不清楚的可以查看下上一篇文章(20): 本文将直接使用@WebFilter和@WebListener的方式,完成一个Filter 和一个 Listener:使用注解 @ServletComponentScan//这个就是扫描相应的Se

4. 使用别的json解析框架【从零开始学Spring Boot】

转载:http://blog.csdn.net/linxingliang/article/details/51585921 此文章已经废弃,请看新版的博客的完美解决方案: 78. Spring Boot完美使用FastJson解析JSON数据[从零开始学Spring Boot] http://412887952-qq-com.iteye.com/blog/2315202

spring boot ----&gt; 常用模板freemarker和thymeleaf

===========================freemarker=================================== freemarker 官网:https://freemarker.apache.org/ freemarker starter: 1 <dependency> 2 <groupId>org.springframework.boot</groupId> 3 <artifactId>spring-boot-starte

43. Spring Boot动态数据源(多数据源自动切换)【从零开始学Spring Boot】

[视频&交流平台] àSpringBoot视频 http://study.163.com/course/introduction.htm?courseId=1004329008&utm_campaign=commission&utm_source=400000000155061&utm_medium=share à SpringCloud视频 http://study.163.com/course/introduction.htm?courseId=1004638001&a

25. Spring Boot使用自定义的properties【从零开始学Spring Boot】

转:http://blog.csdn.net/linxingliang/article/details/52069515 spring boot使用application.properties默认了很多配置.但需要自己添加一些配置的时候,我们应该怎么做呢. 若继续在application.properties中添加 如: 1.     wisely2.name=wyf2 2.     wisely2.gender=male2 定义配置类: 1.     @ConfigurationPropert

从零开始学 Spring Boot

1.下载 spring-tool-suite https://spring.io/tools3/sts/legacy 2.解压运行 sts-bundle\sts-3.9.7.RELEASE\STS.exe 3.新建工程 打开 Dashboard,点击 CREATE SPRING STARTER PROJECT 进入 New Spring Starter Project,设置项目名称(Name).项目 maven 坐标(Group.Artifact),点击 Next 进入 New Spring S

22. Spring Boot 拦截器HandlerInterceptor【从零开始学Spring Boot】

转:http://blog.csdn.net/linxingliang/article/details/52069495 上一篇对过滤器的定义做了说明,也比较简单.过滤器属于Servlet范畴的API,与spring 没什么关系.     Web开发中,我们除了使用 Filter 来过滤请web求外,还可以使用Spring提供的HandlerInterceptor(拦截器). HandlerInterceptor 的功能跟过滤器类似,但是提供更精细的的控制能力:在request被响应之前.req

(转)收集 Spring Boot 相关的学习资料,Spring Cloud点这里 重点推荐:Spring Boot 中文索引

推荐博客 纯洁的微笑-Spring Boot系列文章 林祥纤-从零开始学Spring Boot Mkyong-Spring Boot教程(国外) baeldung-Spring Boot教程(国外) liaokailin的专栏-Spring Boot实战 梁桂钊-Spring Boot 揭秘与实战 系列 catoop的专栏-Spring Boot 学习 简书Spring Boot专题 方志朋-SpringBoot 非官方教程 嘟嘟-Spring-Boot干货系列 小柒-SpringBoot开发案

Spring(二):AOP(面向切面编程),Spring的JDBC模板类

1 AOP概述 1.2 什么是AOP 在软件业,AOP为Aspect Oriented Programmig的缩写,意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术.AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型.利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率. AOP解决了OOP遇到一些问题,采取横向抽取机制,取代了传统