Skip to content

Bcoan/SpringBoot-Neo4J

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SpringBoot + Neo4J

Code Climate

To run application

mvn spring-boot:run (requires maven 3 and java8)

create Person

curl -X POST http://localhost:8080/[email protected]&personId=35&name=bruno

get person by id

curl -X GET http://localhost:8080/people/35

list people

curl -X GET http://localhost:8080/people?limit=0

delete person

curl -X DELETE http://localhost:8080/people/35

create product

curl -X POST http://localhost:8080/products?productId=35&name=teste&price=2.30

get product by id

curl -X GET http://localhost:8080/products/35

list products

curl -X GET http://localhost:8080/products?limit=0

delete product

curl -X DELETE http://localhost:8080/products/35

create viewed Action

curl -X POST http://localhost:8080/people/35/viewed/35

create added to cart Action

curl -X POST http://localhost:8080/people/35/added-to-cart/35

create bought Action

curl -X POST http://localhost:8080/people/35/bought/35

list actions

curl -X GET http://localhost:8080/people/35/actions?limit=0

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages