I wanted to know how I can render the response(basically my HTML) in the mid of a servlet processing.. since the response is always rendered only at the end of the servlet, meaning once all commands are executed.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Servlet 3.0 has asynchronous support in servlets. This means you can render the response and do some other tasks after the response was rendered.