Piatek84
Piatek84

Reputation: 1

Restore attributes after losing session JSP

I have a page in jsp(search page) using some differents combos. I trying to restore the search attributes in case of losing the session. How is the best way to do it? Save the attributes in cookies in the request?

Upvotes: 0

Views: 71

Answers (1)

mukesh kumar Jangid
mukesh kumar Jangid

Reputation: 418

you can save the attributes in cookies and request both but request scope is limited and cookies access whole application so i prefer cookies.

Upvotes: 1

Related Questions