본문 바로가기
WEB Archive

[HTML] page 디렉티브 buffer 속성 및 autoFlush 실습

by universedevelope 2024. 8. 21.
<%@ page contentType="text/html; charset=UTF-8"%>
<%-- <%@ page buffer="1kb" 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>
</head>
<body>
<div>
	<h1>page 디렉티브 buffer 속성 및 autoFlush 실습</h1>
	<hr>
</div>

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

 

728x90

댓글