Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Struts 2 in my web application. My client is asking me to implement "Remember Me" feature, so that he doesn't have to login again. This is what I think should be done:

  1. I should create a cookie with some user-specific key and store the same in database on user login if "Remember me" option is checked.
  2. I should write an interceptor, that takes out cookies from the request, checks the key against the database and if found and not expired (7 days), it puts the corresponding user in session.

Is there any other, more effective & easy & better, performance-wise method?

share|improve this question
Why you are storing cookie in database? Set the max-age of cookie to 7 days. check for expiry date of cookie.. if valid, loggedin the user.. – ZERO MILE Jan 2 at 12:55
This is easy but not clear (may be incomplete) description, OP is looking for some other solutions. – Roman C Jan 2 at 13:21
1  
You could use spring-security which has this feature. – Aleksandr M Jan 2 at 13:38
@ShashiBhushan What would you validate the cookie against if you're not storing the key on the server? – fgb Jan 2 at 14:31
@fgb Whether the requirement is to having unique key for every user.. Then you are right.. Otherwise there is no need of database for cookies. – ZERO MILE Jan 3 at 6:25
show 2 more comments

1 Answer

up vote 1 down vote accepted

Your approach is correct and this link will help you to implement it in a more effective way :)

share|improve this answer
thanks for providing this link. – XCoder Jan 4 at 11:40

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.