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
Define declaration.
What are the annotations used in servlet 3?
Can we get PrintWriter and ServletOutputStream both in a servlet?
What is the web server used for running the Servlets?
The code in a finally clause will never fail to execute, right?
What is Client-Server Computing?
What is the GenericServlet class?
What is a servlet context?
What are different ways for servlet authentication?
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 ?
How is an application exception handling is done using a servlet?
Write a hello world program using servlets.
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 >>
Explain is servlet mapping?
What is URL Encoding?