Java servlet - Session cleanup (HttpServletRequest)

Go To StackoverFlow.com

13

General question about java servlets and the best way to handle requests. If I hit my doGet method from a remote server request:

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
  ....
  <do work here>
  ....
  kill(request);
}

private void kill(HttpServletRequest request) {
//How do I kill the user session here?
}

After I process the request at my end and generate my output to the requester, I want to basically "kill" their session. Currently, that session lingers and thus eats up memory. Then once the max is reached, all other calls are timed out.

I tried creating a HttpSession object using the request object, but got the same results:

HttpSession session = request.getSession();
session.invalidate();
2012-04-05 21:21
by user82302124
I have the impression that your concrete problem needs to be solved in a different way - BalusC 2012-04-05 21:48
Probably. The ultimate goal is I want to end a session in my session pool after their request is handled. Whether or not that is killing the request object or creating a session object for that session to delete it, I am not sure - user82302124 2012-04-06 13:13


23

HttpSession session = request.getSession(false);
if (session != null) {
    session.invalidate();
}

is the proper way to go as suggested by the documentation. A new session will be created once the client sends a new request.

You mentioned that your sessions still take up memory. Do you have any other references to those objects on the session?

You also might want to have a look at: Servlet Session behavior and Session.invalidate

2012-04-05 21:39
by csupnig


5

you can remove an attribute from a session using

session.removeAttribute("attribute name");
2012-04-06 12:01
by mykey


2

Try with

session = request.getSession(false); // so if no session is active no session is created
if (session != null)
  session.setMaxInactiveInterval(1); // so it expires immediatly
2012-04-05 21:27
by dash1e


1

If you dont want Session behavior i.e, having state between multiple requests. Why do you want to create/use session at all. Do not create session or do not store anything in the session.

To make sure that your code is not using session, write a request wrapper which will override getSession() methods.

2012-04-06 05:26
by Ramesh PVK
Ads