값이 같은가? 에 대한 비교로 보통 “== “, “!=” 을 많이 사용한다
이는 jstl에서도 마찬가지면 숫자와 문자 구분은 따움표로 구만해서 사용하는데 이대신 eq, ne를 사용하는것과
list, map 같은 객체가 값이 있느냐 없느냐의 구분하는 용도로 empty 를 사용 할 수 있다.
사용법은 아래와 같다
=============================================== Sample =============================================
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 }"> // 문자