
Hii i m java beginner i just started learning java and i just started the topic of session tracking . I want to know about session scopes that is application ,page ,session etc etc and also their uses if possible with example plzzzzzzz help me...

JSP Scope Variables:
Page scope-It makes the data available to the given page.
Request Scope-It shares the data between all the components which are used to create the final response.It passes information on to the next component without having access to function calls.
Session scope-It limits the data to the given user, it is accessible from any page in the system and will automatically be collected eventually, if the user walks away from their PC or just closes the browser without logging out.
Application scope-It makes the data available across sessions and/or users and across pages.
For examples,please visit the following links:
http://www.roseindia.net/jsp/simple-jsp-example/UsingBeansAndPageScope.shtml
http://www.roseindia.net/jsp/simple-jsp-example/UsingBeanScopeRequest.shtml
http://www.roseindia.net/jsp/simple-jsp-example/UsingBeanScopeSession.shtml
http://www.roseindia.net/jsp/simple-jsp-example/UsingBeanScopeApplication.shtml