{"id":20925625,"url":"https://github.com/claracharriau/todo-app-service","last_synced_at":"2026-05-03T23:34:22.677Z","repository":{"id":152730222,"uuid":"623634286","full_name":"ClaraCharriau/todo-app-service","owner":"ClaraCharriau","description":"A Java / Gradle / Spring Boot (v.3.0.4) / REST API service that can be connected to the todo app Angular project.","archived":false,"fork":false,"pushed_at":"2023-12-19T16:07:19.000Z","size":115,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-09T17:26:24.041Z","etag":null,"topics":["api","api-rest","gradle-java","java","rest-api","spring","spring-boot","spring-rest-api","todolist-app"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ClaraCharriau.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-04T19:08:33.000Z","updated_at":"2023-04-28T09:20:13.000Z","dependencies_parsed_at":"2023-12-19T19:54:43.738Z","dependency_job_id":null,"html_url":"https://github.com/ClaraCharriau/todo-app-service","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ClaraCharriau/todo-app-service","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaraCharriau%2Ftodo-app-service","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaraCharriau%2Ftodo-app-service/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaraCharriau%2Ftodo-app-service/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaraCharriau%2Ftodo-app-service/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ClaraCharriau","download_url":"https://codeload.github.com/ClaraCharriau/todo-app-service/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClaraCharriau%2Ftodo-app-service/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32589260,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","api-rest","gradle-java","java","rest-api","spring","spring-boot","spring-rest-api","todolist-app"],"created_at":"2024-11-18T20:33:54.120Z","updated_at":"2026-05-03T23:34:22.650Z","avatar_url":"https://github.com/ClaraCharriau.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Todo App API\n\nA Java / Gradle / Spring Boot (v.3.0.4) / REST API service that can be connected to the todo app Angular project.\n\n## About the service\n\nA simple Todolist application REST service, that connect with a PostgreSQL database.\n\n### What I learned from this project\n\n- Discovery of Spring Framework : inversion of control, dependency injection, annotations...\n- Writing a RESTful service using annotations, supporting JSON requests and responses\n- Personnalized exceptions\n- Spring Data integration\n- Entities to Dto mapping with Mapstruct\n- Unit testing with JUnit 5, Mockito\n- Documentation test with Spring RestDocs\n- Integration test with DBSetup, RestAssured\n- Docker Compose\n\n### Get all Todos\n```json\nGET /todolist\nAccept: application/json\nContent-Type: application/json\n\n{\n    \"id\": \"0464c4ee-9f34-492a-bc6f-f105ca841c30\",\n    \"content\": \"responds to urgent emails\",\n    \"category\": \"work\",\n    \"urgent\": true,\n    \"doneDate\": \"2023-03-24T10:39:28.977Z\"\n}\n\nRESPONSE: HTTP 200\n```\n\n### Get a specific todo\n```json\nGET /todolist/{id}\nAccept: application/json\nContent-Type: application/json\n\n{\n    \"id\": \"0464c4ee-9f34-492a-bc6f-f105ca841c30\",\n    \"content\": \"responds to urgent emails\",\n    \"category\": \"work\",\n    \"urgent\": true,\n    \"doneDate\": \"2023-03-24T10:39:28.977Z\"\n}\n\nRESPONSE: HTTP 200\n```\n\n### Create a todo\n\n```json\nPOST /todolist\nAccept: application/json\nContent-Type: application/json\n\n{\n    \"id\": \"0464c4ee-9f34-492a-bc6f-f105ca841c30\",\n    \"content\": \"responds to urgent emails\",\n    \"category\": \"work\",\n    \"urgent\": true,\n    \"doneDate\": \"2023-03-24T10:39:28.977Z\"\n}\n\nRESPONSE: HTTP 201 (Created)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaracharriau%2Ftodo-app-service","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclaracharriau%2Ftodo-app-service","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaracharriau%2Ftodo-app-service/lists"}