how the jsp page can be regenerated?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define declaration.

805


What are the annotations used in servlet 3?

751


Can we get PrintWriter and ServletOutputStream both in a servlet?

885


What is the web server used for running the Servlets?

750


The code in a finally clause will never fail to execute, right?

798


What is Client-Server Computing?

2082


What is the GenericServlet class?

851


What is a servlet context?

810


What are different ways for servlet authentication?

764


A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?

812


How is an application exception handling is done using a servlet?

742


Write a hello world program using servlets.

783


I have a requirement Here we have a ResultSet object that will contain 50 records i need to print those recors in to a webpage(i.e; view according to MVC architectures that mybe servlet or jsp) . Here i need to print the records 10 per page that is 1 to 10 in page one and 11 to 20 in page two like remaining will be appeared in other pages we need to display those page numbers whenever we click on that page number we will go to that page and display 10 records like we will display 5 pages it is like this << 1 2 3 4 5 next >>

2715


Explain is servlet mapping?

754


What is URL Encoding?

839