Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 585 Bytes

README.md

File metadata and controls

33 lines (17 loc) · 585 Bytes

mongolink-example

Build Status

Launch the example

mvn jetty:run

Usage

Get all

curl http://localhost:8080/fruits

Add

curl -d "name=aFruit" http://localhost:8080/fruits

Get

curl http://localhost:8080/fruits/fruitId

Modify

curl -X PUT -d "name=anotherFruit" http://localhost:8080/fruits/fruitId

Delete

curl -X DELETE http://localhost:8080/fruits/fruitId

Online example

http://mongolink-example.mongolink.cloudbees.net/