본문 바로가기

카테고리 없음

JSP 문법 - EL

EL (Expression Language) : 출력 담당

 -> ${ } 

 ~ EX ~

   ${list}

   ${list[0].title} 

 

*아래 두개는 동일 결과 출력

<h3> ${list[0].title} </h3>

<h3> ${list[0].getTitle()} </h3> 

 

JSTL (JavaServer Pages Standard Tag Library) : 제어문 , 반복문, 선언문