1. What does flushing buffer means in jsp and what difference will it create in sending the output to the client?(Consider me noob in this case)
2. Difference between flush="true and flush="false" ?
Flushing means the data processed so far can go to the client even if the rest of the page isn't done yet. It's useful when you have a lot of data to send like in a download. flush=true means send to client, flush=false means wait.