Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a servlet. In my doPost method, I am trying to set some attributes in Session. session = req.getSession(false) is resulting in session value being null. So, am not able to set anything in it. At what stage of my servlet will I be able to access session and store some attributes in it?

share|improve this question
1  
Please work little bit on accept rate. – Hardik Mishra Aug 28 '12 at 5:01

1 Answer

up vote 1 down vote accepted

There is nothing like stage to create session in a HttpServlet. You can create it any time once a Servlet gets initialized and before response gets committed.

From Javadoc, There are two methods to create HttpSession.

getSession() -- Returns the current session associated with this request, or if the request does not have a session, creates one.

and getSession(boolean create) -- Returns the current HttpSession associated with this request or, if there is no current session and create is true, returns a new session.

Here you are passing false in getSession(false). So, If session doesn't exist, It will return NULL.

When creating a Session first time Use getSession() or getSession(true) and set attributes then for subsequent use access it using getSession(false) and get attributes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.