// Register a PropertyEditor to support plexus XML <configuration> set as CDATA in
// a spring context XML file.
beanFactory.addPropertyEditorRegistrar( new PlexusConfigurationPropertyEditor() );
beanFactory.addPropertyEditorRegistrar( new PropertiesPropertyEditor() );
beanFactory.addPropertyEditorRegistrar( new CollectionPropertyEditor( List.class, ArrayList.class ) );
beanFactory.addPropertyEditorRegistrar( new CollectionPropertyEditor( Set.class, HashSet.class ) );
beanFactory.addPropertyEditorRegistrar( new MapPropertyEditor( Map.class, HashMap.class ) );
}