Example & Tutorial understanding programming in easy ways.

What are the two scope types for form beans?

For the form bean Class in struts 1.3 we can define the scope of this bean by the following two ways:-

1. Request Scope: Formbean values are available in the current request only. The new request will take the attributes of another form bean.

2. Session Scope: Formbean values are available for all requests in the current session. These values cant de accessed out side the current session they are mainly sessions specific.

Read More →