首页 > 代码库 > velocity使用总结

velocity使用总结

一、判断对象是否为空或null

     1. #if (! $var) 判断$var为空,判断非空为 #if ($var)

     2. 使用 #ifnull() 或 #ifnotnull()

     #ifnull ($var)

     要使用这个特性必须在velocity.properties文件中加入:

  userdirective = org.apache.velocity.tools.generic.directive.Ifnull
  userdirective = org.apache.velocity.tools.generic.directive.Ifnotnull

     3. 使用null工具判断

     #if($null.isNull($var))

     注意这种方式特别有用,尤其你在需要这个判断作为一个判断字句时,比如判断一个集合为null或为空时只能使用这种方式了:

     $if ($null.isNull($mycoll) || $mycoll.size()==0)

二、便利Map和List

  #foreach($data in $mapData.entrySet())

      ${data.key} ${data.value}

   #end

三、if语句

  #if ($foo < 10)
    Go North
  #elseif ($foo == 10)
    Go East
  #else
    Go West

  #end

velocity使用总结