Reputation: 7364
I have a server Neo4j database. I'd like to connect it with my Java application using JPA. There are few possibilities, for example:
However, every Neo4j JPA implementation I found works only with embedded databases.
Currently I managed to solve this temporary by using direct queries to Neo4J REST interface.
Are there any other options for using server Neo4j database in my application?
Upvotes: 1
Views: 920
Reputation: 8206
The latest Hibernate OGM, comes now with Remote Neo4j server support: http://hibernate.org/ogm/
Upvotes: 2