1、Velocity语法Velocity语法 1. 变量(1)变量的定义:#set($name = hello) 说明:velocity中变量是弱类型的。当使用#set 指令时,括在双引号中的字面字符串将解析和重新解释,如下所示:#set($directoryRoot = www )#set($templateName = index.vm )#set($template = $directoryRoot/$templateName )$template输出将会是:www/index.vm注:在velocity中使用$2.5这样的货币标识是没有问题得的,因为velocity中的变量总是以一个大写或
2、者小写的字母开始的。(2)变量规范的写法$name ,也可以写成:$name。提倡用前面的写法。例如:你希望通过一个变量$vice来动态的组织一个字符串。Jackisa$vicemaniac.本来变量是$vice现在却变成了$vicemaniac,这样Veloctiy就不知道您到底要什么了。所以,应该使用规范的格式书写:Jackisa$vicemaniac现在Velocity知道变量是$vice而不是$vicemaniac。注意:当引用属性的时候不能加(3)变量的赋值: $name=hello赋值的左边必须是一个变量或者是属性引用。右边可以是下面六种类型之一: 变量引用,字面字符串,属性引用,
3、方法引用,字面数字,数组列表。下面的例子演示了上述的每种类型:#set( $monkey = $bill ) # variable reference#set( $monkey.Friend = monica ) # string #set( $monkey.Blame = $whitehouse.Leak ) # property reference#set( $monkey.Plan = $spindoctor.weave($web) ) # method reference#set( $monkey.Number = 123 ) #number #set( $monkey.Say = N
4、ot, $my, fault ) # ArrayList注意:如果上述例子中的右值是null, 则左值不会被赋值,也就是说会保留以前的值。velocity模板中未被定义的变量将被认为是一个字符串。例如:#set($foo=gibbous)$moon=$foo输出结果为:$moon=gibbousvelocity模板中不会将reference解释为对象的实例变量。例如:$foo.Name将被解释为Foo对象的getName()方法,而不是Foo对象的Name实例变量。例如:$foo.getBar() 等同于$foo.Bar ;$data.getUser(jon) 等同于$data.User(jo
5、n) ;data.getRequest().getServerName() 等同于$data.Request.ServerName等同于$data.Request.ServerName2. 循环#foreach($elementin$list)Thisis$element. $velocityCount#end例子:#set( $list = pine, oak, maple)#foreach($elementin$list)$velocityCountThisis$element.#end输出的结果为:1 This is pine. 2 This is oak. 3 This is mapl
6、e.每次循环$list中的一个值都会赋给$element变量。$list可以是一个Vector、Hashtable或者Array。分配给$element的值是一个java对象,并且可以通过变量被引用。例如:如果$element t是一个java的Product类,并且这个产品的名字可以通过调用他的getName()方法得到。#foreach ( $key in $list.keySet()Key: $key - Value: $list.get($key) #end提示:velocity中大小写敏感。Velocity还特别提供了得到循环次数的方法,$velocityCount变量的名字是Vel
7、ocity默认的名字。例子:First example:#foreach ( $foo in 1.5 )$foo#endSecond example:#foreach ( $bar in 2.-2 )$bar#endThird example:#set ( $arr = 0.1 )#foreach ( $i in $arr )$i#end上面三个例子的输出结果为:First example:1 2 3 4 5Second example:2 1 0 -1 -2Third example:0 13. 条件语句#if (condition) #elseif (condition) #else #e
8、nd4. 语句的嵌套 #foreach ($element in $list) # inner foreach 内循环 #foreach ($element in $list) This is $element. $velocityCount inner #end # inner foreach 内循环结束 # outer foreach This is $element. $velocityCount outer #end语句中也可以嵌套其他的语句,如#if#else#end等。5. 注释 (1)单行注释:#Thisisasinglelinecomment.(2)多行注释:#*Thusbeg
9、insamulti-linecomment.OnlinevisitorswontseethistextbecausetheVelocityTemplatingEnginewill ignoreit.*#(3)文档格式:#*ThisisaVTLcommentblockandmaybeusedtostoresuchinformation asthedocumentauthorandversioninginformation:version1.1author xiao *#6. 关系和逻辑操作符Velocity 也具有逻辑AND, OR 和 NOT 操作符。 如# example for AND#i
10、f($foo & $bar) This AND that#end例子中#if() 指令仅在$foo 和$bar 斗为真的时候才为真。如果$foo 为假,则表达式也为假;并且 $bar 将不被求值。如果 $foo 为真,Velocity 模板引擎将继续检查$bar的值,如果 $bar 为真,则整个表达式为真。并且输出This AND that 。如果 $bar 为假,将没有输出因为整个表达式为假。7.Velocity 中的宏Velocity中的宏我们可以理解为函数。宏的定义#macro(宏的名称 $参数1 $参数2 ) 语句体(即函数体)#end宏的调用#宏的名称($参数1 $参数2 ) 说明:
11、参数之间用空格隔开。8#stop 停止执行模板引擎并返回,把它应用于debug是很有帮助的。9#include与#parse#include和#parse的作用都是引入本地文件, 为了安全的原因,被引入的本地文件只能在TEMPLATE_ROOT目录下。区别:(1) 与#include不同的是,#parse只能指定单个对象。而#include可以有多个如果您需要引入多个文件,可以用逗号分隔就行:#include (one.gif, two.txt, three.htm )在括号内可以是文件名,但是更多的时候是使用变量的:#include ( “greetings.txt”, $seasonals
12、tock )(2) #include被引入文件的内容将不会通过模板引擎解析; 而#parse引入的文件内容Velocity将解析其中的velocity语法并移交给模板,意思就是说相当与把引入的文件copy到文件中。#parse是可以递归调用的,例如:如果dofoo.vm包含如下行:Count down.#set ($count = 8)#parse (parsefoo.vm)All done with dofoo.vm!那么在parsefoo.vm模板中,你可以包含如下VTL:$count#set($count = $count - 1)#if ( $count 0 )#parse( pars
13、efoo.vm )#elseAll done with parsefoo.vm!#end的显示结果为:Count down.876543210All done with parsefoo.vm!All done with dofoo.vm!注意:在vm中使用#parse来嵌套另外一个vm时的变量共享问题。如:-a.vm 里嵌套 b.vm;-a.vm 里定义了变量 $param;-b.vm 里可以直接使用$param,无任何限制。但需要特别注意的是,如果b.vm里同时定义有变量$param,则b.vm里将使用b.vm里定义的值。10转义字符的使用如果reference被定义,两个意味着输出一个,
14、如果未被定义,刚按原样输出。如:#set($email = foo )$email$email$email$email输出:foo$emailfoo$email如果$email 未定义$email$email$email$email输出:$email$email$email$email11内置对象Velocity内置了一些对象,在vm模版里可以直接调用,列举如下:$request、$response、$session,另外,模板内还可以使用 $msg内的消息工具访问 Struts 的国际化资源,达到简便实现国际化的方法。12. 数组访问对数组的访问在Velocity 中存在问题,因为Veloc
15、ity只能访问对象的方法,而数组又是一个特殊的Array,所以虽然数组可以进行循环列举,但却不能定位访问特定位置的元 素,如 strs2,数组对固定位置元素的访问调用了Array的反射方法get(Object array, int index),而Velocity没能提供这样的访问,所以数组要么改成List等其他类容器的方式来包装,要么就通过公用Util类的方式来提供,传入 数组对象和要访问的位置参数,从而达到返回所需值的目的。示例部分1Hello world的示例代码:(1)Velocity模板(hello.html) New Document hello,$name! (注意:这里的nam
16、e与VelocityTest.java中的名称要一致)(2)将velocity模板的内容转换的类(VelocityTest.java)import java.io.File;import java.io.FileOutputStream;import java.io.PrintWriter;import java.io.Writer;import org.apache.velocity.Template;import org.apache.velocity.VelocityContext;import org.apache.velocity.app.Velocity;import org.ap
17、ache.velocity.app.VelocityEngine;/* * Velocity转换 * author */public class VelocityTest /* * 主函数 * param args */ public static void main(String args) /获取模板引擎 VelocityEngine ve = new VelocityEngine(); /模板文件所在的路径 String path = D:/java/jproject/regedit/webroot; /设置参数 ve.setProperty(Velocity.FILE_RESOURCE
18、_LOADER_PATH, path);/处理中文问题 ve.setProperty(Velocity.INPUT_ENCODING,GBK); ve.setProperty(Velocity.OUTPUT_ENCODING,GBK); try /初始化模板 ve.init(); /获取模板(hello.html)Velocity模板的名称 Template template = ve.getTemplate(hello.html); /获取上下文 VelocityContext root = new VelocityContext(); /把数据填入上下文 root.put(name,wor
19、ld); (注意:与上面的对应)/输出路径 Strint outpath = e:/helloworld.html; /输出 Writer mywriter = new PrintWriter(new FileOutputStream( new File(outpath); template.merge(root, mywriter); mywriter.flush(); catch (Exception e) e.printStackTrace(); (3)环境的搭建在lib目录内分别copy进:velocity-1.4.jar,velocity-dept.jar;下载地址:http:/ja
20、karta.apache.org/velocity/(4)运行后的结果如下: New Document hello,world! 2Servlet和Velocity结合示例(1)example.html Velocity Welcom to Velocity! Heres the list of people Names: #foreach ($name in $theList) $name #end (2)servletpackage com.koal.velocity;import java.io.IOException;import java.io.FileNotFoundExcepti
21、on;import java.util.ArrayList;import java.util.Properties;import java.util.Vector;import javax.servlet.ServletConfig;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.velocity.Template;import org.apache.velocity.context.Context;import org.ap
22、ache.velocity.servlet.VelocityServlet;import org.apache.velocity.app.Velocity;import org.apache.velocity.exception.ResourceNotFoundException;import org.apache.velocity.exception.ParseErrorException;public class SampleServlet extends VelocityServlet /* * 由VelocityServlet.init()调用, * 在此找出模版的路径 */ prot
23、ected Properties loadConfiguration(ServletConfig config ) throws IOException, FileNotFoundException Properties p = new Properties(); /取得路径 String path = config.getServletContext().getRealPath(/); if (path = null) System.out.println( SampleServlet.loadConfiguration() : unable to + get the current web
24、app root. Using /. Please fix.); path = /; /设置路径 p.setProperty( Velocity.FILE_RESOURCE_LOADER_PATH, path); return p; /* * Velocity主要的商业逻辑处理方法,由VelocityServlet自动调用 * param ctx 模板上下文 * return Template 模板信息 */ public Template handleRequest( HttpServletRequest request, HttpServletResponse response, Cont
25、ext ctx ) /主要在此设置演示用的数据,开发中在此调用相应的业务处理流程, /并设置返回到页面的数据 /待展示的列表数据 String p1 = 第一位:LiuDong; String p2 = 第二位:Liang.xf; Vector personList = new Vector(); /中文需要转换 try personList.addElement(new String(p1.getBytes(), ISO-8859-1) ); personList.addElement(new String(p2.getBytes(), ISO-8859-1) ); catch (Excep
26、tion e) System.out.println(数据转换异常:+e); /设置数据,供页面模版替换成显示的数据 ctx.put(theList, personList ); /定义模板 Template outty = null; try /取模板 outty = getTemplate(example.html); catch( ParseErrorException pee ) System.out.println(SampleServlet: parse error for template + pee); catch( ResourceNotFoundException rnfe ) System.out.println(SampleServlet: template not found + rnfe); catch( Exception e ) System.out.println(Error + e); return outty;
copyright@ 2008-2022 冰豆网网站版权所有
经营许可证编号:鄂ICP备2022015515号-1