Example & Tutorial understanding programming in easy ways.

What are the different scopes available for JSPs?.

There are four types of scopes are allowed in the JSP listed below.

1. page - with in the same page
2. request - after forward or include also you will get the request scope data.
3. session - after senRedirect also you will get the session scope data. All data stored in session is available to end user till session closed or browser closed.
4. application - Data will be available throughout the application. One user can store data in application scope and other can get the data from application scope.

Read More →