Session attributes

All the attributes and values that we discussed until now are used within a single request. However, there might be values such as a specific web user configuration that might not change across requests. These kinds of values will typically be stored in an HTTP session. Spring MVC provides a simple type level (class level) annotation @SessionAttributes to specify the attributes that would be stored in the session.

Take a look at the following example:

    @Controller 
@SessionAttributes("exampleSessionAttribute")
public class LoginController {
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset