<%@ page contentType="text/html; charset=UTF-8"%>
<%-- <%@ page buffer="1kb" autoFlush="false" %> - autoFlush 버퍼를 더 추가할 거냐 안할거냐의 여부 실행 X --%>
<%--<%@ page buffer="10kb" autoFlush="false" %> - 버퍼가 늘어났기 때문에 반복문 정상작동 실행 O --%>
<%-- <%@ page buffer="1kb" autoFlush="true" %> - 버퍼가 채워진다면 밀어내고 다시 쓸 건지의 여부 실행 O --%>
<%--<%@ page buffer="8kb" autoFlush="true" %> -★★ 명시되어 있지 않아도 기본적으로 버퍼는 8kb의 autoFlush속성은 true로 설정되어있다 ! ★★ --%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div>
<h1> page 디렉티브 buffer 속성 및 autoFlush 실습</h1>
<hr>
</div>
<div>
<%
for(int i=1; i<=1000; i++)
{%>1234<%}
%>
</div>
</body>
</html>