Reputation: 15
I'm making a Thesaurus on Java and my database I'm using is neo4j. Now I want to build this Thesaurus as a web application, this is a simple web app like JSP + servlet. What can I do now?
Upvotes: 0
Views: 718
Reputation: 80166
Use one of the published java drivers to talk to the neo4j server. I recommend using Spring Data to avoid writing the scaffolding code yourselves. Read this small book to get started: Good Relationships
Upvotes: 1