JSP/MVC
OUTPUT
GAWON
2023. 6. 9. 18:03
<%@ 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>
<h1>현재 날짜 (표현식) : <%=request.getAttribute("today") %></h1>
<h1>현재 날짜 (EL) : ${today }</h1>
<hr>
<h1>현재 시간 (표현식) : <%=request.getAttribute("now") %></h1>
<h1>현재 시간 (EL) : ${now }</h1>
</body>
</html>