This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org
CRV2 FrameworkSpecIssuesSpring
From OWASP
Revision as of 09:02, 8 August 2013 by EoinKeary (talk | contribs) (Created page with "==Spring Mass assignment== The mass assignment problem relates to the universal web framework pattern of automatic binding request parameters into model objects. See also MVC...")
Spring Mass assignment
The mass assignment problem relates to the universal web framework pattern of automatic binding request parameters into model objects. See also MVC/.NET section previously <link here>
Model objects are an object-oriented representation of user input. They provide methods to get, set etc associated parameters from user input. The following frameworks provide a mechanism for binding request parameters into request bound objects based on matching request parameter names to object attribute names (based on matching public getter and setter methods).