본문 바로가기

Wanna be a Programmer/Servlet & JSP

JSP로 작성한 hello.jsp

 

hello.jsp

<%@page import="java.util.Date"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>hello.jsp</title>
</head>
<body>
안녕하세요.. 반갑습니다.<br>
<%
 //java coding
 out.println("현재시간: " + new Date());

%>
<br>
<%
 for(int i=1; i<=10; i++) {
%>
  <%= i %> <br>
 <%} %> //1부터 10까지 출력
</body>
</html>

 

 

JSP 생각보다 어렵다.