What is the meaning of @ModelAttribute annotation at method argument level?
- by beemaster
Spring 3 reference teaches us:
When you place it on a method
parameter, @ModelAttribute maps a
model attribute to the specific,
annotated method parameter
I don't understand this magic spell, because i sure that model object's alias (key value if using ModelMap as return type) passed to the View after executing of the request handler…