Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter04 : EL1 / EL2 본문

JSP/EL

chapter04 : EL1 / EL2

GAWON 2023. 5. 24. 09:33
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<%
	
		Cookie cookie = new Cookie("name" ,"김씨");
		cookie.setMaxAge(60*10);
		response.addCookie(cookie);
	
	%>
	쿠키가 생성되었습니다.
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	쿠키 확인 : ${cookie.name.value }
</body>
</html>

'JSP > EL' 카테고리의 다른 글

chapter06 : EL1/ EL2  (0) 2023.05.24
chapter05 : EL1 / EL2  (0) 2023.05.24
chapter03 : EL1 / EL2  (0) 2023.05.24
chapter02 : EL_overview  (0) 2023.05.24
chapter01 : attribute  (0) 2023.05.24