how the jsp page can be regenerated?

Answers were Sorted based on User's Feedback



how the jsp page can be regenerated?..

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

how the jsp page can be regenerated?..

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

Post New Answer

More Servlets Interview Questions

What is the use of servlet wrapper classes?

1 Answers  


explain the advantages of servlet life cycle?

1 Answers  


what is SSL?

3 Answers  


What are the types of servlets? Explain

1 Answers  


What are the various ways of session supervision in servlets?

1 Answers  


Can you send the mail from a servlet ,if yes tell how?

2 Answers  


Which HTTP method is non-idempotent?

1 Answers  


what is the difference between servlets and struts?

3 Answers  


What do you mean by annotations in servlet?

1 Answers  


What is the use of request dispatcher interface?

1 Answers  


What is the difference between servlet and jsp?

1 Answers  


What is dispatcher servlet?

1 Answers  


Categories