How many ways to remove the session object in the container
Answer Posted / kishore
Session objects can be removed in three ways.
1> session.invalidate() - will remove all session objects
2> session.removeAtttribute(objName); - will remove the
specified object
3> session.setAtttribute(objName,null); - will remove the
specified object
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What are the mechanisms used by a servlet container for maintaining session information?
Is servlet a server side scripting language?
What do you mean by deployment descriptor?
Define the lifecycle for executing a jsp page.
How to create war file?
What are the uses of servlet and what is servlet chaining?
What are the disadvantages of storing session state in cookies?
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!
What is servlet interface?
How can you push data from an Applet to a Servlet?
explain the advantages of servlet life cycle?
Why do we need servlet filter?
What is getservletcontext?
Explains the differences between context.getrequestdispatcher() and request.getrequestdispatcher()?
Whether we can get deadlock situation in servlets?