*
* @param beanFactory the bean factory to back the registry
* @return a registry that retrieves objects from the given bean factory
*/
public static Registry spring(ListableBeanFactory beanFactory) {
return Registries.backedRegistry(new SpringRegistryBacking(beanFactory));
}