반응형
String 데이타 타입 사용
#set(str = "Komal Choudhary"): str 변수를 String 타입으로 초기화한다.
$str: string data 를 표현한다.
======= input ========
#set(str = "Komal Choudhary"): str 변수를 String 타입으로 초기화한다.
$str: string data 를 표현한다.
======= input ========
#set($str
= "Komal Choudhary")
$str
======= output ========
Komal Choudhary
number 숫자 타입을 데이타를 초기화하고 싶을때
#set(num = 12345): Set a number datatype variable with the given value.
$num: Display number datatype variable.
====== input =====
#set($num = 12345)
$num
====== Output ======
12345
bool 형 데이타로 초기화를 하고 싶을때
#set($bool = true): Set a boolean datatype variable.
$bool: Display boolean datatype variable.
======== input =======
#set($bool = true)
$bool
====== Output =======
true
반응형
'자바(JAVA)' 카테고리의 다른 글
원하는 위치의 문자열을 다른것으로 바꾸고 싶을때(치환) 간단 로직 (0) | 2009.02.21 |
---|---|
소숫점 이하를 버리는 방식 2가지 (0) | 2009.02.19 |
Java applet 과 javascript, html form 과의 통신방법 (0) | 2009.02.08 |
velocity 페이지에서 java 제공하는 date, 시간관련 객체를 사용하고싶을때 (0) | 2009.02.08 |
velocity java class 객체들을 사용하고자 할 때 (0) | 2009.02.08 |
velocity 에서 배열값을 화면에 그대로 표현하고 싶을 (0) | 2009.02.08 |
Velocity 에서 xml 을 사용하여 표현하기 (0) | 2009.02.08 |
싱글톤 생성객체를 재생성하지 못하도록 하자 (0) | 2009.02.05 |