So currently I have the simple basic xml file to start up Spring Data Neo4j.

However, most of my other beans are all defined through @Configuration classes. Is there a way to configure SDN beans simply in Java Config classes?

I am currently using @ImportResources in my @COnfiguration class to load in the xml, but it isn't working, my repositories aren't getting created as beans.

Thanks

Mark