Ich habe versucht, die Restful-API mit Spring Boot zu implementieren. Quellcode: https://github.com/unhurried/spring-boot-rest-api
Die verwendeten Bibliotheken sind wie folgt.
/ src / main / resources / application.yaml
ein./ sql / create.sql
aus, um ein DB-Schema zu erstellen.Datei
→ Importieren
→ Vorhandenes Projekt in Arbeitsbereich
Eine API zum Ausführen von CRUD-Operationen für ToDo-Ressourcen ist implementiert.
# Create a ToDo item.
$ curl --request POST \
> --url http://localhost:8080/example/api/todos \
> --header 'Content-Type: application/json' \
> --data '{"title":"Test","content":"This is a test.","date": "2018-06-01"}' \
> --include
HTTP/1.1 200
Content-Type: application/json
Content-Length: 71
{"id":1,"title":"Test","content":"This is a test.","date":"2018-06-01"}
Recommended Posts