Freemarker入门案例
Freemarker入门案例
首先需要到freemarker官方下载freemarker的jar包,导入到项目中,如:freemarker-2.3.19.jar
1、先建个freemarker的工具类,FreemarkerUtil.java

- package com.ljq.fm;
- import java.io.File;
- import java.io.FileWriter;
- import java.io.IOException;
- import java.io.PrintWriter;
- import java.util.Map;
- import freemarker.template.Configuration;
- import freemarker.template.Template;
- import freemarker.template.TemplateException;
- public class FreemarkerUtil {
- public Template getTemplate(String name) {
- try {
- // 通过Freemaker的Configuration读取相应的ftl
- Configuration cfg = new Configuration();
- // 设定去哪里读取相应的ftl模板文件
- cfg.setClassForTemplateLoading(this.getClass(), "/ftl");
- // 在模板文件目录中找到名称为name的文件
- Template temp = cfg.getTemplate(name);
- return temp;
- } catch (IOException e) {
- e.printStackTrace();
- }
- return null;
- }
- /**
- * 控制台输出
- *
- * @param name
- * @param root
- */
- public void print(String name, Map<String, Object> root) {
- try {
- // 通过Template可以将模板文件输出到相应的流
- Template temp = this.getTemplate(name);
- temp.process(root, new PrintWriter(System.out));
- } catch (TemplateException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- /**
- * 输出HTML文件
- *
- * @param name
- * @param root
- * @param outFile
- */
- public void fprint(String name, Map<String, Object> root, String outFile) {
- FileWriter out = null;
- try {
- // 通过一个文件输出流,就可以写到相应的文件中,此处用的是绝对路径
- out = new FileWriter(new File("E:/workspace/freemarkprj/page/" + outFile));
- Template temp = this.getTemplate(name);
- temp.process(root, out);
- } catch (IOException e) {
- e.printStackTrace();
- } catch (TemplateException e) {
- e.printStackTrace();
- } finally {
- try {
- if (out != null)
- out.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- }

2 、在src目录下建个ftl包,用于存放ftl模板文件,this.getClass() 就是根据当前类的路径获取模板文件位置
01.ftl

- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>测试</title>
- </head>
- <body>
- <h1>你好${username}</h1>
- </body>
- </html>

02.ftl

- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- <h1>你好: ${username}</h1>
- </body>
- </html>

03.ftl

- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- <h1>${user.id}-----${user.name}-----${user.age}</h1>
- <#if user.age lt 12>
- ${user.name}还是一个小孩
- <#elseif user.age lt 18>
- ${user.name}快成年
- <#else>
- ${user.name}已经成年
- </#if>
- </body>
- </html>

04.ftl

- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- <#list users as user>
- ${user.id}---------${user.name}-------${user.age}<br/>
- </#list>
- </body>
- </html>

05.ftl

- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- <hr/>
- <#list users as user>
- ${user.id}---------${user.name}-------${user.age}<br/>
- </#list>
- </body>
- </html>

06.ftl

- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- ${user.id}-------${user.name}------${user.group!} <#-- !后为空就不输出 -->
- <#--${user.group.name!}--><#-- 按照以上的方式加! freemarker仅仅只会判断group.name是不是空值 -->
- ${(user.group.name)!"1234"}
- ${(a.b)!"没有a.b元素"}
- <#--
- !:指定缺失变量的默认值
- ??:判断某个变量是否存在,返回boolean值
- -->
- <#if (a.b)??> <#--if后不用加$-->
- 不为空
- <#else>
- 为空
- </#if>
- </body>
- </html>

实体类User.java

- package com.ljq.fm;
- import java.io.Serializable;
- @SuppressWarnings("serial")
- public class User implements Serializable {
- private int id;
- private String name;
- private int age;
- private Group group;
- public Group getGroup() {
- return group;
- }
- public void setGroup(Group group) {
- this.group = group;
- }
- public User() {
- }
- public User(int id, String name, int age) {
- this.id = id;
- this.name = name;
- this.age = age;
- }
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public int getAge() {
- return age;
- }
- public void setAge(int age) {
- this.age = age;
- }
- }

实体类Group.java

- package com.ljq.fm;
- /**
- *
- *
- * @author 林计钦
- * @version 1.0 2013-10-25 下午02:36:09
- */
- public class Group {
- private String name;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }

3、再建个Junit的测试类 FreemarkerTest.java

- package com.ljq.fm;
- import java.io.File;
- import java.io.FileWriter;
- import java.io.IOException;
- import java.io.PrintWriter;
- import java.util.Map;
- import freemarker.template.Configuration;
- import freemarker.template.Template;
- import freemarker.template.TemplateException;
- public class FreemarkerUtil {
- public Template getTemplate(String name) {
- try {
- // 通过Freemaker的Configuration读取相应的ftl
- Configuration cfg = new Configuration();
- // 设定去哪里读取相应的ftl模板文件
- cfg.setClassForTemplateLoading(this.getClass(), "/ftl");
- // 在模板文件目录中找到名称为name的文件
- Template temp = cfg.getTemplate(name);
- return temp;
- } catch (IOException e) {
- e.printStackTrace();
- }
- return null;
- }
- /**
- * 控制台输出
- *
- * @param name
- * @param root
- */
- public void print(String name, Map<String, Object> root) {
- try {
- // 通过Template可以将模板文件输出到相应的流
- Template temp = this.getTemplate(name);
- temp.process(root, new PrintWriter(System.out));
- } catch (TemplateException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- /**
- * 输出HTML文件
- *
- * @param name
- * @param root
- * @param outFile
- */
- public void fprint(String name, Map<String, Object> root, String outFile) {
- FileWriter out = null;
- try {
- // 通过一个文件输出流,就可以写到相应的文件中,此处用的是绝对路径
- out = new FileWriter(new File("E:/workspace/freemarkprj/page/" + outFile));
- Template temp = this.getTemplate(name);
- temp.process(root, out);
- } catch (IOException e) {
- e.printStackTrace();
- } catch (TemplateException e) {
- e.printStackTrace();
- } finally {
- try {
- if (out != null)
- out.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- }

Freemarker入门案例的更多相关文章
- SpringBoot快速入门(解析+入门案例源码实现)
这里写目录标题 SpringBoot入门 一.SpringBoot 概念 二.JavaConfig 入门 1. JavaConfig 概念 2. 项目准备 三.常用注解 四.SpringBoot 入门 ...
- SpringMVC入门案例及请求流程图(关于处理器或视图解析器或处理器映射器等的初步配置)
SpringMVC简介:SpringMVC也叫Spring Web mvc,属于表现层的框架.Spring MVC是Spring框架的一部分,是在Spring3.0后发布的 Spring结构图 Spr ...
- SpringMvc核心流程以及入门案例的搭建
1.什么是SpringMvc Spring MVC属于SpringFrameWork的后续产品,已经融合在Spring Web Flow里面.Spring 框架提供了构建 Web 应用程序的全功能 M ...
- Struts2第一个入门案例
一.如何获取Struts2,以及Struts2资源包的目录结构的了解 Struts的官方地址为http://struts.apache.org 在他的主页当中,我们可以通过左侧的Apache ...
- MyBatis入门案例、增删改查
一.MyBatis入门案例: ①:引入jar包 ②:创建实体类 Dept,并进行封装 ③ 在Src下创建大配置mybatis-config.xml <?xml version="1.0 ...
- Hibernate入门案例及增删改查
一.Hibernate入门案例剖析: ①创建实体类Student 并重写toString方法 public class Student { private Integer sid; private I ...
- Quartz应用实践入门案例二(基于java工程)
在web应用程序中添加定时任务,Quartz的简单介绍可以参看博文<Quartz应用实践入门案例一(基于Web应用)> .其实一旦学会了如何应用开源框架就应该很容易将这中框架应用与自己的任 ...
- Quartz应用实践入门案例一(基于Web环境)
Quartz是一个完全由java编写的开源作业调度框架,正是因为这个框架整合了许多额外的功能,所以在使用上就显得相当容易.只是需要简单的配置一下就能轻松的使用任务调度了.在Quartz中,真正执行的j ...
- MyBatis入门案例 增删改查
一.MyBatis入门案例: ①:引入jar包 ②:创建实体类 Dept,并进行封装 ③ 在Src下创建大配置mybatis-config.xml <?xml version="1.0 ...
随机推荐
- java 继承与多态
Example5_11.java class 动物 { void cry() { } } class 狗 extends 动物 { void cry() { System.out.println(&q ...
- mplayer最全的命令
前段时间做过qt内嵌mplayer的一个小程序,感觉mplayer还行不过不支持打开图片感觉有点无力.话不多说上代码: QString path="d:/1.mkv"; QWidg ...
- 5--OC--构造方法
// Created by Stephen on 16/3/2.// Copyright © 2016年 Stephen. All rights reserved.//// 回顾上一章节Perso ...
- maven认识
在这里普及一下知识: ┣ maven与ant是同类,构建工具 ┣ svn与cvs,css是同类,版本控制工具 1.为什么要用Maven? 在进行软件开发的过程中,无论什么项目,采用何种技术,使用何种编 ...
- CodeForces 670 A. Holidays(模拟)
Description On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Ma ...
- ubuntu上的mysql数据库双机备份设置
配置环境: myslq 5.5.3 + ubuntu server 12.04 一.配置MySQL主服务器(192.168.0.1) 1.增加一个账号专门用于同步 1 mysql>grant r ...
- spring项目中的定时任务实现和问题解决
之前我用JAVA中的Timer类实现了服务器的定时任务,具体详见之前的博文. 后来发现了一个更简单的实现方式,利用spring中的@Scheduled注解实现觉得简单的很多. 确实spring封装的特 ...
- ignite学习笔记
1.一个Ignite节点可以从命令行启动,可以用默认的配置也可以传递一个配置文件.可以启动很多很多的节点然后他们会自动地发现对方. 2.Ignite只需要一个ignite-core强依赖,通常你还需要 ...
- Puzzles
Puzzles Barney lives in country USC (United States of Charzeh). USC has n cities numbered from 1 thr ...
- 文件夹添加 IIS 应用程序池用户权限
http://serverfault.com/questions/81165/how-to-assign-permissions-to-applicationpoolidentity-account ...