본문 바로가기

JAVA/JSP & Servlet

익스프레션 언어(expression language) empty

 

<%@ 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>