How do I register a custom type converter in Spring? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T16:00:54Z http://stackoverflow.com/feeds/question/67980 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/67980/how-do-i-register-a-custom-type-converter-in-spring 1 How do I register a custom type converter in Spring? alexei.vidmich 2008-09-15T23:38:35Z 2009-10-12T15:02:22Z <p>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?</p> http://stackoverflow.com/questions/67980/how-do-i-register-a-custom-type-converter-in-spring/68035#68035 0 Answer by toolkit for How do I register a custom type converter in Spring? toolkit 2008-09-15T23:50:48Z 2008-09-15T23:50:48Z <p>Not sure what you are asking?</p> <p>Spring comes with a <a href="http://static.springframework.org/spring/docs/2.5.5/api/org/springframework/beans/factory/config/CustomEditorConfigurer.html" rel="nofollow">CustomEditorConfigurer</a> to supply custom String &lt;-> Object converters.</p> <p>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.</p> <p>If you are using Spring MVC, then take a look at the section on <a href="http://static.springframework.org/spring/docs/2.5.5/reference/mvc.html#mvc-annotation" rel="nofollow">annotated MVC</a></p> <p>Specifically, have a look at the <strong>@RequestParam</strong> and the <strong>@ModelAttribute</strong> annotations?</p> <p>Hope this helps? </p> http://stackoverflow.com/questions/67980/how-do-i-register-a-custom-type-converter-in-spring/68450#68450 1 Answer by MetroidFan2002 for How do I register a custom type converter in Spring? MetroidFan2002 2008-09-16T01:11:30Z 2008-09-16T01:53:36Z <p>Please see chapter 5 of the spring reference manual here: <a href="http://static.springframework.org/spring/docs/2.5.x/reference/validation.html#beans-beans-conversion-customeditor-registration" rel="nofollow">5.4.2.1. Registering additional custom PropertyEditors</a></p> http://stackoverflow.com/questions/67980/how-do-i-register-a-custom-type-converter-in-spring/69314#69314 3 Answer by alexei.vidmich for How do I register a custom type converter in Spring? alexei.vidmich 2008-09-16T04:07:28Z 2008-09-16T04:07:28Z <p>I have an MVC controller with RequestMapping annotations. One method has a parameter of type UUID. Thanks toolkit, after reading about <a href="http://static.springframework.org/spring/docs/2.5.5/reference/mvc.html#mvc-ann-webdatabinder" rel="nofollow">WebDataBinder</a>, I figured that I need a method like this in my controller:</p> <pre><code>@InitBinder public void initBinder(WebDataBinder binder) { binder.registerCustomEditor(UUID.class, new UUIDEditor()); } </code></pre> <p>UUIDEditor simply extends PropertyEditorSupport and overrides getAsText() and setAsText().</p> <p>Worked for me nicely.</p> http://stackoverflow.com/questions/67980/how-do-i-register-a-custom-type-converter-in-spring/1555102#1555102 0 Answer by David Newcomb for How do I register a custom type converter in Spring? David Newcomb 2009-10-12T15:02:22Z 2009-10-12T15:02:22Z <p>In extenstion to the previous example.</p> <p>Controller class</p> <pre><code>@Controller @RequestMapping("/showuuid.html") public class ShowUUIDController { @InitBinder public void initBinder(WebDataBinder binder) { binder.registerCustomEditor(UUID.class, new UUIDEditor()); } public String showuuidHandler (@RequestParam("id") UUID id, Model model) { model.addAttribute ("id", id) ; return "showuuid" ; } } </code></pre> <p>Property de-munger</p> <pre><code>class UUIDEditor extends java.beans.PropertyEditorSupport { @Override public String getAsText () { UUID u = (UUID) getValue () ; return u.toString () ; } @Override public void setAsText (String s) { setValue (UUID.fromString (s)) ; } } </code></pre>