When I want a model in Session scope in Spring 3, I use the foll. annotation in a Controller:-
@SessionAttribute("myModel");
However, this is just the declaration of myModel. At which point does it gets initialized so that I use it in a View. And how will Spring know the class-type of this model?
Can someone explain this with example?