<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page buffer="1kb" autoFlush="false"%>
<!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>Buffer 관리하기</title>
<%for(int i=0;i<=3000;i++){
%> <%=i %><%
}
%>
</head>
<body>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page buffer="8kb" autoFlush="false"%>
<!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>Buffer 관리하기</title>
<%for(int i=0;i<=3000;i++){
%> <%=i %><%
}
%>
<br/>
</head>
<body>
autoFlush="false"로 설정하면 <br/>
버퍼 사이즈 보다 더 큰 내용을 보여줄때<br/>
buffer overFlow가 발생합니다.<br/>
일반적으로autoFlus="true"를 사용하고<br/>
명시하지 않아도 기본값으로 적용됩니다.<br/>
buffer="8kb"가 default로 설정 되어 있습니다.<br/>
버퍼의 크기를 수정할 수 있습니다.<br/>
</body>
</html>