본문 바로가기

프로그래밍/JSP

JSTL에서의 EL사용







Expression language (EL)



JSTL - 연산자

1) 산술연산자 : + - * / (div) % (mod) 

2) 논리연산자 : &&(and) ||(or) !(not) 

3) 관계연산자 : ==(eq) !=(ne) <(lt) >(gt) <=(le) >=(ge)

4) 삼항연산자 : ?:

예) ${colors == null ? "transparent" : colors}


5) 그 외 예약어 : true, false, null, instanceof, empty( null이거나 공백일때 )