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 is the use of servlet wrapper classes?
explain the advantages of servlet life cycle?
what is SSL?
What are the types of servlets? Explain
What are the various ways of session supervision in servlets?
Can you send the mail from a servlet ,if yes tell how?
Which HTTP method is non-idempotent?
what is the difference between servlets and struts?
What do you mean by annotations in servlet?
What is the use of request dispatcher interface?
What is the difference between servlet and jsp?
What is dispatcher servlet?