The JspWriter docs say, "If the page is not buffered, output written to this JspWriter object will be written through to the PrintWriter directly.... But if the page is buffered, the PrintWriter object will not be created until the buffer is flushed".
The PrintWriter docs show a flush() method, which makes me think it's somehow buffered, too. It seems strange to have a buffered JspWriter send data to a buffered PrintWriter. I'm new to this so I think I must be missing something here. Is that really what's going on?
Thanks.