I need to pass a UUID instance via http request parameter. Spring needs a custom type converter (from String) to be registered. How do I register one?
|
|
I have an MVC controller with RequestMapping annotations. One method has a parameter of type UUID. Thanks toolkit, after reading about WebDataBinder, I figured that I need a method like this in my controller:
UUIDEditor simply extends PropertyEditorSupport and overrides getAsText() and setAsText(). Worked for me nicely. |
||
|
|
|
|
Please see chapter 5 of the spring reference manual here: 5.4.2.1. Registering additional custom PropertyEditors |
|||
|
|
|
|
Not sure what you are asking? Spring comes with a CustomEditorConfigurer to supply custom String <-> Object converters. To use this, just add the CustomEditorConfigurer as bean to your config, and add the custom converters. However, these converters are typically used when converting string attributes in the config file into real objects. If you are using Spring MVC, then take a look at the section on annotated MVC Specifically, have a look at the @RequestParam and the @ModelAttribute annotations? Hope this helps? |
||
|
|
|
|
In extenstion to the previous example. Controller class
Property de-munger
|
||
|
|
