buffer JSP page directive with Example

1. What is buffer JSP? JSP first writes the response data to the buffer and when the buffer is full, the data is sent to client. "buffer" is one of the 14 attributes of page directive. When the PrintWriter object is closed with out.close(), the unfilled buffer is flushed to the client. 2. What is …

buffer JSP page directive with Example Read More »