freemarker获取封装类中对象的属性(六)
freemarker获取封装类中对象的属性
1、设计思路
(1)封装学生类
(2)创建数据模型
(3)新建student.ftl
(4)运行Junit测试文件,生成HTML文件
2、封装学生类
Student.java:
/**
* @Title:Student.java
* @Package:com.you.freemarker.model
* @Description:学生类
* @author:Youhaidong(游海东)
* @date:2014-5-26 下午11:41:05
* @version V1.0
*/
package com.you.freemarker.model;
import java.io.Serializable;
import java.util.Date;
/**
* 类功能说明
* 类修改者 修改日期
* 修改说明
* <p>Title:Student.java</p>
* <p>Description:游海东个人开发</p>
* <p>Copyright:Copyright(c)2013</p>
* @author:游海东
* @date:2014-5-26 下午11:41:05
* @version V1.0
*/
public class Student implements Serializable
{
/**
* @Fields serialVersionUID:序列化
*/
private static final long serialVersionUID = 1L;
/**
* 学生姓名
*/
private String studentName;
/**
* 学生性别
*/
private String studentSex;
/**
* 学生年龄
*/
private int studentAge;
/**
* 学生生日
*/
private Date studentBirthday;
/**
* 学生地址
*/
private String studentAddr;
/**
* QQ
*/
private long studentQQ;
/**
* @return the studentName
*/
public String getStudentName() {
return studentName;
}
/**
* @param studentName the studentName to set
*/
public void setStudentName(String studentName) {
this.studentName = studentName;
}
/**
* @return the studentSex
*/
public String getStudentSex() {
return studentSex;
}
/**
* @param studentSex the studentSex to set
*/
public void setStudentSex(String studentSex) {
this.studentSex = studentSex;
}
/**
* @return the studentAge
*/
public int getStudentAge() {
return studentAge;
}
/**
* @param studentAge the studentAge to set
*/
public void setStudentAge(int studentAge) {
this.studentAge = studentAge;
}
/**
* @return the studentBirthday
*/
public Date getStudentBirthday() {
return studentBirthday;
}
/**
* @param studentBirthday the studentBirthday to set
*/
public void setStudentBirthday(Date studentBirthday) {
this.studentBirthday = studentBirthday;
}
/**
* @return the studentAddr
*/
public String getStudentAddr() {
return studentAddr;
}
/**
* @param studentAddr the studentAddr to set
*/
public void setStudentAddr(String studentAddr) {
this.studentAddr = studentAddr;
}
/**
* @return the studentQQ
*/
public long getStudentQQ() {
return studentQQ;
}
/**
* @param studentQQ the studentQQ to set
*/
public void setStudentQQ(long studentQQ) {
this.studentQQ = studentQQ;
}
/**
* <p>Title:</p>
* <p>Description:无参构造函数</p>
*/
public Student() {
super();
}
/**
* <p>Title:</p>
* <p>Description:有参构造函数</p>
* @param studentName
* @param studentSex
* @param studentAge
* @param studentBirthday
* @param studentAddr
* @param studentQQ
*/
public Student(String studentName, String studentSex, int studentAge,
Date studentBirthday, String studentAddr, long studentQQ) {
super();
this.studentName = studentName;
this.studentSex = studentSex;
this.studentAge = studentAge;
this.studentBirthday = studentBirthday;
this.studentAddr = studentAddr;
this.studentQQ = studentQQ;
}
}
3、创建数据模型
Map<String,Object> root = null;
/**
*
* @Title:testStudent
* @Description:
* @param:
* @return: void
* @throws
*/
@Test
public void testStudent()
{
//创建数据模型
root = new HashMap<String,Object>();
root.put("student", new Student("张三丰","男",34,new Date(1988-12-12),"湖北省武汉市武昌洪山区",78451214));
student("student.ftl");
studentFile("student.ftl","student.html");
}
/**
*
* @Title:student
* @Description:
* @param:@param name
* @return: void
* @throws
*/
private void student(String name)
{
ft.printFtl(name,root);
}
/**
*
* @Title:studentFile
* @Description:
* @param:@param name
* @param:@param fileName
* @return: void
* @throws
*/
private void studentFile(String name,String fileName)
{
ft.printFile(name, root, fileName);
}
4、新建student.ftl
student.ftl:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>学生信息</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
姓名:${student.studentName}
性别:${student.studentSex}
年龄:${student.studentAge}
生日:${(student.studentBirthday)?string("yyyy-MM-dd")}
地址:${student.studentAddr}
QQ:${student.studentQQ}
</body>
</html>
5、运行Junit测试文件,生成HTML文件

6、控制台输出结果
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>学生信息</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
姓名:张三丰
性别:男
年龄:34
生日:1970-01-01
地址:湖北省武汉市武昌洪山区
QQ:78,451,214
</body>
</html>
freemarker获取封装类中对象的属性(六)的更多相关文章
- freemarker获取封装类中对象的属性
freemarker获取封装类中对象的属性 1.设计思路 (1)封装学生类 (2)创建数据模型 (3)新建student.ftl (4)运行Junit测试文件,生成HTML文件 2.封装学生类 Stu ...
- 利用KVC的方式更方便地获取数组中对象的属性的最值平均值等
直接上代码 输出结果也在相应的代码里标注出来了 //main.m文件 #import <Foundation/Foundation.h> #import "Student.h&q ...
- Java获取未知类型对象的属性
获取未知类型对象的属性通常有两种方式: 一是通过自定义注解的方式,通过获取被注解的属性从而获取属性的值,这种方式也是Spring参数注入的重要实现手段 二是通过反射获取属性的名称,通过属性名从而获取属 ...
- JavaScript中对象的属性
在JavaScript中,属性决定了一个对象的状态,本文详细的研究了它们是如何工作的. 属性类型 JavaScript中有三种不同类型的属性:命名数据属性(named data properties) ...
- java 对list中对象按属性排序
实体对象类 --略 排序类----实现Comparator接口,重写compare方法 package com.tang.list; import java.util.Comparator; publ ...
- springboot中spring.profiles.active来引入多个properties文件 & Springboot获取容器中对象
1. 引入多个properties文件 很多时候,我们项目在开发环境和生成环境的环境配置是不一样的,例如,数据库配置,在开发的时候,我们一般用测试数据库,而在生产环境的时候,我们是用正式的数据, ...
- Vue 改变数组中对象的属性不重新渲染View的解决方案
Vue 改变数组中对象的属性不重新渲染View的解决方案 在解决问题之前,我们先来了解下 vue响应性原理: Vue最显著的一个功能是响应系统-- 模型只是一个普通对象,修改对象则会更新视图.受到ja ...
- array排序(按数组中对象的属性进行排序)
使用array.sort()对数组中对象的属性进行排序 <template> <div> <a @click="sortArray()">降序& ...
- JS 取Json数据中对象特定属性值
解析JSON JSON 数据 var str = '[{"a": "1","b": "2"}, {"a&quo ...
随机推荐
- BZOJ 3569: DZY Loves Chinese II [高斯消元XOR 神题]
http://www.lydsy.com/JudgeOnline/problem.php?id=3569 题意:多次询问一个无向连通图当图中某k条边消失时这个图是否联通 强制在线 太神啦啦啦啦啦啦啦啦 ...
- 数据提交成功后如何避免alert被window.location.reload()影响
数据提交成功用alert提示,但页面立马就重载了 alert("提交成功!"); window.location.reload(); 如何避免? 方法一: setTimeout 延 ...
- 数据分析之pandas教程------数据处理
目录 1 数据合并 1.1 实现数据库表join功能 1.2 实现union功能 2 数据转换 2.1 轴旋转 2.2 数据转换 2.2.1 去重 2.2.2 对某一列运用函数 2.2 ...
- Material使用11 核心模块和共享模块、 如何使用@angular/material
1 创建项目 1.1 版本说明 1.2 创建模块 1.2.1 核心模块 该模块只加载一次,主要存放一些核心的组件及服务 ng g m core 1.2.1.1 创建一些核心组件 页眉组件:header ...
- HTTP入门
请求报文图解: 请求报文 图片 响应报文图解: 响应报文
- 浅学vue
因之前项目接触了vue,从此我被迷住,简洁而不失优雅,小巧而不乏大匠. 首先我们要了解vue,什么是vue,正如官网所说:Vue.js 是一套构建用户界面的渐进式框架,Vue 的核心库只关注视图层.V ...
- Scoping the Project for iOS 7
Scoping the Project On This Page Things Every App Must Do Things Every App Should Do If You Must Con ...
- win10+anaconda+cuda配置dlib,使用GPU对dlib的深度学习算法进行加速(以人脸检测为例)
在计算机视觉和机器学习方向有一个特别好用但是比较低调的库,也就是dlib,与opencv相比其包含了很多最新的算法,尤其是深度学习方面的,因此很有必要学习一下.恰好最近换了一台笔记本,内含一块GTX1 ...
- 如何使用 VS生成动态库?
如何使用 VS生成动态库? //.cpp 文件默认定义了 __cplusplus 宏 #ifdef __cplusplus extern "C"{ #endif xxx #ifde ...
- 出行服务类API调用的代码示例合集:长途汽车查询、车型大全、火车票查询等
以下示例代码适用于 www.apishop.net 网站下的API,使用本文提及的接口调用代码示例前,您需要先申请相应的API服务. 长途汽车查询:全国主要城市的长途汽车时刻查询,汽车站查询 车型大全 ...