{"id":20981072,"url":"https://github.com/prabha1729/spring-boot-restful-api","last_synced_at":"2026-04-22T12:09:20.635Z","repository":{"id":141229167,"uuid":"285051045","full_name":"prabha1729/Spring-Boot-RESTful-Api","owner":"prabha1729","description":"This is a spring boot REST API that will enable a client to perform CRUD operations on the contact collection","archived":false,"fork":false,"pushed_at":"2020-08-05T02:22:15.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-29T11:03:53.515Z","etag":null,"topics":["contacts-app","spring-boot","spring-data-jpa","springframework"],"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/prabha1729.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":"2020-08-04T17:26:07.000Z","updated_at":"2020-08-16T04:20:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"c386a23a-93fc-473c-9da9-4a2647c4ccb5","html_url":"https://github.com/prabha1729/Spring-Boot-RESTful-Api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/prabha1729/Spring-Boot-RESTful-Api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabha1729%2FSpring-Boot-RESTful-Api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabha1729%2FSpring-Boot-RESTful-Api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabha1729%2FSpring-Boot-RESTful-Api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabha1729%2FSpring-Boot-RESTful-Api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prabha1729","download_url":"https://codeload.github.com/prabha1729/Spring-Boot-RESTful-Api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabha1729%2FSpring-Boot-RESTful-Api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32135242,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T08:34:57.708Z","status":"ssl_error","status_checked_at":"2026-04-22T08:34:55.583Z","response_time":58,"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":["contacts-app","spring-boot","spring-data-jpa","springframework"],"created_at":"2024-11-19T05:33:36.940Z","updated_at":"2026-04-22T12:09:20.589Z","avatar_url":"https://github.com/prabha1729.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spring-Boot-RESTful-Api for Contact System\n\n This is a spring boot REST API that will enable a client to perform CRUD operations on the contact collection.\n\n# Reach out to me\n[\u003cimg align=\"left\" alt=\"LinkedIn\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/linkedin.svg\" /\u003e](https://www.linkedin.com/in/prabhakargaddam/)\n[\u003cimg align=\"left\" alt=\"Gmail\" width=\"22px\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/gmail.svg\" /\u003e](\u003cmailto:prabhakargaddam1729@gmail.com\u003e)\n\n\u003cbr/\u003e\n\n# Execution\n```\n# To build the project standard maven build is sufficient\nmvn clean install\n\n# To start/run the project spring boot maven plugin is included just run\nmvn spring-boot:run\n\n# The integration test may be executed using\nmvn test\n```\n # Usage \nOnce the application is started,\n\n## To get all the contacts   \n- Goto http://localhost:8080/contacts/ which return all contacts available.\n\n## To get specific contact   \n- Goto http://localhost:8080/contacts/{id} which return all the information about the contact.\n\n## To add or update a new contact   \n- Execute the following in [cURL](https://en.wikipedia.org/wiki/CURL)\n```\n##For update replace POST to PUT\n$ curl -i -X POST -H \"Content-Type:application/json\" -d \"{\n    \"address\": {\n        \"street\": \"Barton Creek Drive\",\n        \"city\": \"Charlotte\",\n        \"state\": \"North Carolina\",\n        \"zip\": \"28262\"\n    },\n    \"name\": {\n        \"first\": \"Akhilshetty\",\n        \"middle\": \"\",\n        \"last\": \"Madhamshetty\"\n    },\n    \"phones\": [\n        {\n            \"number\": \"1234567890\",\n            \"type\": \"work\"\n        },\n        {\n            \"number\": \"9876543210\",\n            \"type\": \"mobile\"\n        }\n    ],\n    \"email\": \"akhil@gmail.com\"\n}\" http://localhost:8080/contacts/\n\n```\n\n## You may also like...\n\n- [Stock Trade ](https://github.com/prabha1729/Hacker-Rank-Stock-Trade-Api) - A RESTful service to manage trades using Spring Boot framework\n- [Airport Info](https://github.com/prabha1729/Airport-Info) - A Spring Boot Service for airport information.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprabha1729%2Fspring-boot-restful-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprabha1729%2Fspring-boot-restful-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprabha1729%2Fspring-boot-restful-api/lists"}