How do you handle the case where you want user input from a form to be htmlEscape'd when you are binding to a command object?
I want this to sanitize input data automatically in order to avoid running through all fields in command object.
thanks.
|
How do you handle the case where you want user input from a form to be htmlEscape'd when you are binding to a command object? I want this to sanitize input data automatically in order to avoid running through all fields in command object. thanks. |
||||
|
|
|
If you are using a FormController you can register a new property editor by overriding the initBinder(HttpServletReques, ServletRequestDataBinder) method. This property editor can escape the html, javascript and sql injection. If you are using a property editor the values from the request object will be processed by the editor before assigning to the command object. When we register a editor we have to specify the type of the item whose values has to be processed by the editor. Sorry, now I don't the syntax of the method. But I'm sure this is how we have achieved this. EDITEDI think the following syntax can work In your controller override the following method as shown
Then create the following property editor
Hopes this helps you |
||||
|
|