The difference of the class it comes from is obvious but i think the question is
why does a
jsp expression <%=new Date()%> will translate to an out.print(new Date) in generated
Servlet
and a template text like <p> example<p> will translate to an out.write("<p>example<p>")
The out implicit variable is of type JspWriter.
write() method is there from the super class java.io.Writer does this write to the response directly or to the buffer. please explain
what is the difference.
Many Thanks
Sameer