J'ai essayé d'implémenter l'API Restful en utilisant Spring Boot. Code source: https://github.com/unhurried/spring-boot-rest-api
Les bibliothèques utilisées sont les suivantes.
/ src / main / resources / application.yaml
./ sql / create.sql
pour créer un schéma de base de données.Fichier
→ Importer
→ Projet existant dans l'espace de travail
Exécuter
→ Application Spring Boot
Une API pour effectuer des opérations CRUD sur les ressources ToDo est implémentée.
# 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