JSTL에서의 EL사용
Expression language (EL) JSTL - 연산자1) 산술연산자 : + - * / (div) % (mod) 2) 논리연산자 : &&(and) ||(or) !(not) 3) 관계연산자 : ==(eq) !=(ne) (gt) =(ge)4) 삼항연산자 : ?:예) ${colors == null ? "transparent" : colors} 5) 그 외 예약어 : true, false, null, instanceof, empty( null이거나 공백일때 )
2018. 4. 1. 20:36