How we can check in particular page the session will be
alive or not
Answer Posted / aseet padhi
U can use request.getSession(false); method in
HttpServletRequest interface.It returns the HttpSession
associated with this request or null if the request has no
valid session.
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
What are the disadvantages of storing session state in cookies?
What are some advantages of storing session state in cookies?
What is servlet lazy loading?
What is the directory structure of a war file?
How do we call one servlet from another servlet?
What is java servlet session?
What if you need to span your transaction across multiple servlet invocations?
Why filter is used in servlet?
Which exception is thrown if the servlet is not initialized properly?
Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?
What is difference between the HTTP Servlet and Generic Servlet? Explain about their methods and parameters?
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!
Which interface should be implemented by all servlets?
What is the difference between servlet and jsp?
What do you mean by cgi?