use WrappingNeoServerBootstrapper with spring-data-neo4j

后端 未结 1 1753
萌比男神i
萌比男神i 2020-12-20 10:12

Is it possible to use the WrappingNeoServerBootstrapper with spring-data-neo4j?

When using an embedded database without spring-data-neo4j, one can use a

1条回答
  •  南笙
    南笙 (楼主)
    2020-12-20 10:42

    That should be no problem. The config below is not tested, but should work and give you an idea how to set it up.

    
    
    
      
    
    
    
       
    
    

    Transactions are handled the same way as the Neo4j-REST API does it. One per request. The underlying neo4j-rest-graphdb library also supports the REST-Batch API but that is not yet leveraged in SDN.

    Update:

    Please also add the dependency for the webadmin static files to your project, something like this:

    
      org.neo4j.app
      neo4j-server
      1.5
      jar
      static-web
    
    

    0 讨论(0)
提交回复
热议问题