Answer Posted / 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 View All Answers
How printwriter is different from servletoutputstream?
Is it good idea to create servlet constructor?
How to handle exceptions thrown by application with another servlet?
Why filter is used in servlet?
Differentiate between the web server and application server?
What is ServletContext object?
Explain in brief the directory structure of a web application?
What is preinitialization of a servlet?
Explains the differences between context.getrequestdispatcher() and request.getrequestdispatcher()?
What do you mean by interservlet communication?
Why HttpServlet class is declared abstract?
How to make sure a servlet is loaded at the application startup?
How do I know if java is running on linux?
Why do we use sendredirect() method?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!