JSP
JSTL 의 eq , empty , ne 명령
Rust Choi
2019. 11. 13. 13:13
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 }"> // 문자