| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This is the code of a simple API for some CRUD operations build using Spring Boot.
To build and start the server simply type
$ mvn clean install
$ mvn spring-boot:run -Dserver.port=8989You can see what crud operation are available using curl:
$ curl localhost:8080You can view existing student objects with this command:
$ curl localhost:8080/studentsOr create a new one via a POST:
$ curl -X POST -H "Content-Type:application/json" -d '{ "firstName" : "Dassi", "lastName" : "Orleando", "phoneNumber": "+237 545454545", "email": "mymail@yahoo.fr" }' localhost:8080/studentsNow with default configurations it will be available at: http://localhost:8080
Enjoy it :)
| Back | FazBrowse Home | New Git URL |