웹 & 프레임워크

[JSTL] 여러가지 구분자

늘근이 2014. 5. 14. 08:49

Ex) eq (==)

1. <c:if test="${ null eq test_column }"> // null

2. <c:if test="${ 0 eq test_column }"> // 숫자

3. <c:if test="${ '0' eq test_column }"> // 문자

 

Ex) empty  

<c:if test="${ empty  test_columnMap }"> // list, map 객체 등

<c:if test="${ !empty  test_columnMap }"> // 비어 있지 않은 경우

 

Ex) ne (!=)

1. <c:if test="${ null ne test_column }"> // null

2. <c:if test="${ 0 ne test_column }"> // 숫자

3. <c:if test="${ '0' ne test_column }"> // 문자