kennek
kennek

Reputation: 15

How to use neo4j in JSP

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

Answers (1)

Aravind Yarram
Aravind Yarram

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

Related Questions