How do I register a custom type converter in Spring? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T16:00:54Zhttp://stackoverflow.com/feeds/question/67980http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/67980/how-do-i-register-a-custom-type-converter-in-spring1How do I register a custom type converter in Spring?alexei.vidmich2008-09-15T23:38:35Z2009-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#680350Answer by toolkit for How do I register a custom type converter in Spring?toolkit2008-09-15T23:50:48Z2008-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 <-> 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#684501Answer by MetroidFan2002 for How do I register a custom type converter in Spring?MetroidFan20022008-09-16T01:11:30Z2008-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#693143Answer by alexei.vidmich for How do I register a custom type converter in Spring?alexei.vidmich2008-09-16T04:07:28Z2008-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#15551020Answer by David Newcomb for How do I register a custom type converter in Spring?David Newcomb2009-10-12T15:02:22Z2009-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>