org.springframework.data.neo4j.config.Neo4jConfiguration Java Examples

The following examples show how to use org.springframework.data.neo4j.config.Neo4jConfiguration. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DatabaseInitializer.java    From spring-cloud-event-sourcing-example with GNU General Public License v3.0 5 votes vote down vote up
@Autowired
public DatabaseInitializer(ProductRepository productRepository, ShipmentRepository shipmentRepository,
                           WarehouseRepository warehouseRepository, AddressRepository addressRepository,
                           CatalogRepository catalogRepository, InventoryRepository inventoryRepository,
                           Neo4jConfiguration neo4jConfiguration) {
    this.productRepository = productRepository;
    this.shipmentRepository = shipmentRepository;
    this.warehouseRepository = warehouseRepository;
    this.addressRepository = addressRepository;
    this.catalogRepository = catalogRepository;
    this.inventoryRepository = inventoryRepository;
    this.neo4jConfiguration = neo4jConfiguration;
}