본문 바로가기

others

Velocity에서의 Map 사용

다음과 같이 사용하면 됩니다.

#set ($portalMap = {"NAVER" : "http://www.naver.com/", "DAUM" : "http://www.daum.net/", "NATE" : "http://www.nate.com/", "YAHOO" : "http://kr.yahoo.com/"})

#foreach ( $entry in $portalMap.entrySet())

          <li>$velocityCount.<a href="$entry.getValue()"  target="_blank">$entry.getKey()</a></li>

#end

 추가로 $, # 같은 특수문자를 사용하기 위해서는 \#parse ("\$test.vm") 같이 "\" 를 사용하시면 됩니다.

'others' 카테고리의 다른 글

JSON Object 정렬하기  (0) 2012.01.30
checkbyte jQuery plugin  (0) 2011.11.11
자바스크립트 체크박스 관련  (0) 2009.07.30
browser의 layout engine  (0) 2009.06.17
JEUS5 webadmin 비밀번호 변경  (0) 2009.01.22