Posted
Filed under JSP, JAVA
  • ageScope page scope 의 변수들
    requestScope request scope 의 변수들
    sessionScope session scope 의 변수들
    applicationScope application scope 의 변수들
    param parameter 변수들 문자열
    paramValues parameter 변수들 문자열 배열
    header HTTP request 헤더
    headerValues HTTP request 헤더 문자열 배열
    initParam 컨텍스트 초기 변수 web.xml 에서 지정
    cookie 쿠키 변수들
    pageContext 현재 페이지의 pageContext 객체

EL 연산자

  • 연산자 구분 연산자
    관계 < lt > gt <= le >= ge == eq != ne
    산술 + - * / div % mod
    논리 && and || or ! not
    Empty empty

-연산자들간의 우선순위는 다음과 같다.
1. [] .
2. ()
3. - (단항) not ! empty
4. * / div % mod
5. + - (이항)
6. < > <= >= lt gt le ge
7. == != eq ne
8. && and
9. || or

2011/03/22 20:05 2011/03/22 20:05