最近專案中用到了velocity與struts2結合,總結一下valocity實用的標籤
1:變數宣告:
#set($lihan="lihan")
2:輸出變數:
$lihan (有這個變數則輸出,沒有則輸出"$lihan")
$!lihan (有這個變數則輸出,無則不輸出)
3:集合遍歷:
#foreach( $lihan in $list )
$velocitycount
$lihan.name
#end
迴圈計數變數的預設名稱是$velocitycount,在velocity.properties 配置檔案中標明。預設情況下,
該變數從1開始計數,但是可以在velocity.properties 檔案中設為從0或者1開始。
4:輸出集合大小
$5:包含:
#include( "lihan.txt" )
#include( "lihan.gif","lihan.txt","lihan.htm" )
6:解析:
#parse( "lihan.vm" )
#stop,用於停止執行解析,並返回,主要用於除錯功能。
7:if語句
#if($user.firstname=='李晗')
congratulation!
#else
不是#end
mysql常用語法 MySQL常用語法
更新資料 update 表名 set 健名 更改的值 where 建 刪除資料 delete from 表名 where 索引 create index 索引名稱 on 表名 鍵名 建立試圖 create view 檢視名 鍵,鍵 as select matchno,abs won lost fro...
mysql基本常用語法 mysql 常用語法
1.1.開啟 service mysql start 1.2.關閉 service mysql stop 1.3.重啟 service mysql restart 2.1.密碼明文 語法 mysql u使用者名稱 p使用者密碼 舉例 mysql uroot p123456 2.2.密碼密文 語法 m...
CmakeList中常用語法學習
一 add library 視覺slam十四講 中的例子 二 target link libraries例子1 目標檔案是要生成的動態庫檔案myslam,庫檔案就是第三方庫檔案 add library myslam shared frame.cpp map.cpp camera.cpp config...