32333435363738394041
@Produces @ApplicationScoped GraphDatabase createGraphDatabase() throws Exception { GraphDatabaseFactoryBean factory = new GraphDatabaseFactoryBean(); factory.setStoreLocation("target/cdi-test-db"); return factory.getObject(); }