| Author |
HttpSession in JSP
|
Shailesh Pillai
Ranch Hand
Joined: Jan 24, 2006
Posts: 78
|
|
Is it necessary that while doing a project using JSP we need to use Session Attributes? As a beginner, i dont know much about it. Can anyone explain with an example what's the importance of it. In my project I do have a login page where different users will b logging in at same time. So, can v avoid using HttpSession.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56169
|
|
|
Why would you want to avoid using sessions?
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Shailesh Pillai
Ranch Hand
Joined: Jan 24, 2006
Posts: 78
|
|
|
I am not at all aware of the fundamental behind usage of Sessions. Can u briefly xplain its advantages and limitations.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56169
|
|
|
HTTP is a stateless protocol. The session is used to maintain state between requests.
|
 |
 |
|
|
subject: HttpSession in JSP
|
|
|