首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

在Java中运用velocity

2012-10-09 
在Java中使用velocitypublic String getElement() throws Exception{// 1.初始化并取得Velocity引擎//Stri

在Java中使用velocity
public String getElement() throws Exception
{
// 1.初始化并取得Velocity引擎
//String fileDir = HelloVelocity.class.getResource("").getPath();
String fileDir = "D:/workspace_MyEclipse/test_sm/WebRoot/template";
VelocityEngine ve = new VelocityEngine();
Properties properties = new Properties();
properties.setProperty(ve.FILE_RESOURCE_LOADER_PATH, fileDir);
ve.init(properties);   //初始化

// 2.取得velocity的上下文context
VelocityContext context = new VelocityContext();
// 3.把数据填入上下文
context.put("name", "Liang李安");
context.put("date", (new Date()).toString());
// 为后面的展示,提前输入List数值
List temp = new ArrayList();
temp.add("1");
temp.add("2");
context.put("list", temp);
Client c = new Client();
List<Animal> aList = c.animalManager.findAllAnimal();
context.put("aList", aList);


// 4. 取得velocity的模版
Template t = ve.getTemplate("hellovelocity.vm");
// 5. 输出流
StringWriter writer = new StringWriter();
// 6.转换输出
t.merge(context, writer);

String result = writer.toString();
System.out.println(result);
return result;
}
1 楼 sdslnmd 2010-06-10   一直不清楚模板和JSP有什么区别?我是指性能上,是节省了一次编译的成本吗?
请LZ指点 谢谢 2 楼 zhangyi0618 2010-06-12   模板可以很好的将逻辑与显示分离出来,便于高效开发和维护,在运行期时由引擎根据模板产生动态的Html页面. 在性能上应该要比Jsp快一点. 学习中.

热点排行