velocity是什么
2个回答
展开全部
一种J2EE的前端模版技术。
和JSP,Freemarker差不多,都是用来展示网页内容的。
和JSP不同的是velocity只能显示Action中的数据,不能处理数据。不能写java代码,但是可以使用Velocity标记。
Velocity的页面(模版)可是是任何类型(text/html)的文件。
比如Action中有如下两个属性.
class XxxAction{
private String title;
private String name;
public String execute(){
this.name = "Tom";
this.title="HelloWord";
return "velocity";
}
//getter & setter 必须要提供getter
}
struts.xml
<result name="velocity" type="velocity">a.html</result>
velocity会将标记部分替换掉。
a.html
<html>
<head>
<title>${title}</title>
</head>
<body>
hello ${name}
</body>
</html>
最终将会返回页面如下:
<html>
<head>
<title>HelloWord</title>
</head>
<body>
hello Tom
</body>
</html>
注:这个例子需要在struts2下,并且加入velocity jar包。
和JSP,Freemarker差不多,都是用来展示网页内容的。
和JSP不同的是velocity只能显示Action中的数据,不能处理数据。不能写java代码,但是可以使用Velocity标记。
Velocity的页面(模版)可是是任何类型(text/html)的文件。
比如Action中有如下两个属性.
class XxxAction{
private String title;
private String name;
public String execute(){
this.name = "Tom";
this.title="HelloWord";
return "velocity";
}
//getter & setter 必须要提供getter
}
struts.xml
<result name="velocity" type="velocity">a.html</result>
velocity会将标记部分替换掉。
a.html
<html>
<head>
<title>${title}</title>
</head>
<body>
hello ${name}
</body>
</html>
最终将会返回页面如下:
<html>
<head>
<title>HelloWord</title>
</head>
<body>
hello Tom
</body>
</html>
注:这个例子需要在struts2下,并且加入velocity jar包。
2014-04-03
展开全部
类似而jsp的一种模板引擎,具体可以百度下。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询