how the jsp page can be regenerated?
Answers were Sorted based on User's Feedback
Answer / geetha
when included files are changed, the servlet generated by
the JSP is not usually regenerated. So if you make a change
to an included file, make sure to tell your server to
regenerate the servlet for the including JSP. Another way
to do this is to re-save the including JSP. This changes
the file modification timestamp, which is supposed to cause
the servlet to regenerate.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / dhagej
in case of dynamic include, contents of the included jsp
page will be reflected
besides uploading the file again to server another way is to
change the time stamp of the jsp file on the server, so that
the server will recompile the JSP when it is invoked
e.g touch filename.jsp
| Is This Answer Correct ? | 1 Yes | 1 No |
What are cookies and how will you use them?
Can you refresh servlet in client and server-side automatically?
Servlet Chaining? How do you do the Filtering in Servlets?
What is the difference between servlet and filter?
What are the two important api's in for servlets?
can we override service method in my servlet class..?? if yes or no why ??
How do you deal property files in servlet?
Which http method is said to be non-idempotent and idempotent?
What is setattribute in servlet?
Whether we can get deadlock situation in servlets?
how this statement works..? public void service(HttpServletRequest request,HttpServletResponse response)
Explain the architechure of a servlet?