I realy appreciate Spring 3 anoation driven mapping of Web Controllers
I have a lot of Controllers with signatures like:
@RequestMapping(value = \"solici
After execution of controller method BindingResult
is stored as a model attribute named BindingResult.MODEL_KEY_PREFIX +
, later model attributes are merged into request attributes. So, before merging you can use Hurda's own answer, after merging use:
request.getAttribute(BindingResult.MODEL_KEY_PREFIX + "solicitation")