<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>익스프레션 : Empty 연산자</title>
</head>
<body>
<!-- url뒤에 ?id='값' 을 줄 경우 id로 출력됨-->
<!--
http://localhost/ElEx01/EmptyEx01.jsp : guest
http://localhost/ElEx01/EmptyEx01.jsp?id= : guest
http://localhost/ElEx01/EmptyEx01.jsp?id=test : test
-->
Empty 연산자 : ${empty param.id ? "guest" : param.id }<br>
</body>
</html>
'JAVA > JSP & Servlet' 카테고리의 다른 글
익스프레션 언어(expression language) HashMap (0) | 2013.03.21 |
---|---|
익스프레션 언어(expression language) ArrayList (0) | 2013.03.21 |
익스프레션 언어(expression language) 산술, 비교, 논리, 조건 -param- (0) | 2013.03.21 |
익스프레션 언어(expression language) -cookie- (0) | 2013.03.21 |
익스프레션 언어(expression language) 기본[requestScope ,pageScope ] (0) | 2013.03.21 |