page 디렉티브 buffer 속성 및 autoFlush

Chae Yun·2021년 10월 22일
0

JSP(Java Server Page)

목록 보기
7/12

[전체코드]

<%@ page contentType="text/html; charset=UTF-8"%>
<%@ page buffer="8kb" autoFlush="true"%>
<%-- <%@ page buffer="1kb" autoFlush="false"%> 일 경우 에러 발생 --%>
<%-- <%@ page buffer="10kb" autoFlush="false"%> 일 경우 정상 처리 --%>
<%-- <%@ page buffer="1kb" autoFlush="true"%> 일 경우 정상 처리 --%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test001.jsp</title>
<link rel="stylesheet" type="text/css" href="css/css.main">
</head>
<body>

<div>
	<h1>page 디렉티브 buffer 속성 및 autoFlush 실습</h1>
	<hr>
</div>

<div>
	<h2>반복문 구성</h2>
	
	<%
	for(int i=1; i<=1000; i++)
	{
	%>1234<%
	}
	%>
</div>

</body>
</html>

0개의 댓글