23강. EL(Expression Language) 내장객체 Lecturer Kim Myoung-Ho Nickname 블스 blogstudy@naver.com
관계형 : ==, != <, >, <=, >= 조건 : a? b : c 논리 : &&, || 23-1. EL(Expression Language)? EL(Expression Language)란, 표현식 또는 액션 태그를 대신해서 값을 표현하는 언어 입니다. (jsp_23_1_ex1_elex) <%= value %> ${ value } 표현식 EL EL 연산자 (jsp_23_1_ex1_elex) 산술 : +, -, *, / % 관계형 : ==, != <, >, <=, >= 조건 : a? b : c 논리 : &&, ||
<jsp:getProperty name="member" property="name"/> 23-2. 액션태그로 사용되는 EL (jsp_23_2_ex1_elex) <jsp:getProperty name="member" property="name"/> ${member.name }
pageScope : page객체를 참조하는 객체 requestScope : request객체를 참조하는 객체 23-3. 내장객체 (jsp_23_3_ex1_elex) pageScope : page객체를 참조하는 객체 requestScope : request객체를 참조하는 객체 sessionScope : session객체를 참조하는 객체 applicationScope : application객체를 참조하는 객체 param : 요청 파라미터를 참조하는 객제 paramValues : 요청 파라미터(배열)를 참조하는 객제 initParam : 초기화 파라미터를 참조하는 객체 cookie : cookie객체를 참조하는 객체