{"id":19478338,"url":"https://github.com/priyansusahoo/springboot_hibernate_crud_api_endpoints","last_synced_at":"2026-06-12T06:02:09.400Z","repository":{"id":216158394,"uuid":"740609980","full_name":"Priyansusahoo/SpringBoot_Hibernate_crud_API_EndPoints","owner":"Priyansusahoo","description":"API Endpoints for SpringBoot_Hibernate_CRUD","archived":false,"fork":false,"pushed_at":"2024-01-09T13:45:30.000Z","size":60,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T16:43:36.076Z","etag":null,"topics":["api","controller","json"],"latest_commit_sha":null,"homepage":"https://github.com/Priyansusahoo/SpringBoot_Hibernate_CRUD","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Priyansusahoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-01-08T17:38:17.000Z","updated_at":"2024-01-08T18:33:00.000Z","dependencies_parsed_at":"2024-11-10T19:49:37.408Z","dependency_job_id":"d3d502c3-f677-4a94-8d18-e9a8a98bc2af","html_url":"https://github.com/Priyansusahoo/SpringBoot_Hibernate_crud_API_EndPoints","commit_stats":null,"previous_names":["priyansusahoo/springboot_hibernate_crud_api_endpoints"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Priyansusahoo/SpringBoot_Hibernate_crud_API_EndPoints","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_crud_API_EndPoints","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_crud_API_EndPoints/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_crud_API_EndPoints/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_crud_API_EndPoints/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Priyansusahoo","download_url":"https://codeload.github.com/Priyansusahoo/SpringBoot_Hibernate_crud_API_EndPoints/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_crud_API_EndPoints/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34231212,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","controller","json"],"created_at":"2024-11-10T19:49:29.930Z","updated_at":"2026-06-12T06:02:09.377Z","avatar_url":"https://github.com/Priyansusahoo.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# SpringBoot_Hibernate_crud_API_EndPoints\n### API Endpoints for SpringBoot_Hibernate_CRUD with Example:\n\n\n## getAllEmployees API :\n- (GET) Request\n- URL : http://localhost:9090/myapp/getAllEmployees\n\nResponse Body -\u003e\n(JSON)\n\n    [\n    {\n        \"id\": 2,\n        \"firstName\": \"Priyansu\",\n        \"lastName\": \"Sahoo\",\n        \"email\": \"priyansusahoo1@gmail.com\"\n    },\n    {\n        \"id\": 3,\n        \"firstName\": \"Priyansu\",\n        \"lastName\": \"Sahoo\",\n        \"email\": \"priyansusahoo1@gmail.com\"\n    }\n    ]\n\n## addEmployee API :\n- (POST) Request\n- URL : http://localhost:9090/myapp/addEmployee\n\nRequest Body :\n(raw -\u003e JSON)\n    \n    {\n    \"firstName\" : \"Priyansu\",\n    \"lastName\" : \"Sahoo\",\n    \"email\" : \"priyansusahoo1@gmail.com\"\n    }\n\nResponse Body -\u003e\n(JSON)\n\n    true\n\n## getById :\n- (GET) Request\n- URL : http://localhost:9090/myapp/getById?id=7\n\nRequest Body :\n\n![Alt text](ReadmeImages/image.png)\n\nResponse Body -\u003e\n(JSON)\n\n    {\n    \"id\": 7,\n    \"firstName\": \"Priyansu\",\n    \"lastName\": \"Sahoo\",\n    \"email\": \"abc@gmail.com\"\n    }\n\n## deleteById :\n- (PUT) Request\n- URL : http://localhost:9090/myapp/deleteById?id=9\n\nRequest Body :\n\n![Alt text](ReadmeImages/image-1.png)\n\nResponse Body -\u003e\n(JSON)\n    \n    true\n\n## updateEmailById :\n- (PUT) Request\n- URL : http://localhost:9090/myapp/updateEmailById?id=5\u0026email=sddfsadf@gmail.com\n\nRequest Body :\n\n![Alt text](ReadmeImages/image-2.png)\n\nResponse Body -\u003e\n(JSON)\n    \n    true\n\n## updateAddressById :\n- (PUT) Request\n- URL : http://localhost:9090/myapp/updateEmailById?id=5\u0026email=sddfsadf@gmail.com\n\nRequest Body :\n\n![image](https://github.com/Priyansusahoo/SpringBoot_Hibernate_crud_API_EndPoints/assets/78722016/b8853013-c2a1-415c-a110-805742815a43)\n\nResponse Body -\u003e\n(JSON)\n    \n    true\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpriyansusahoo%2Fspringboot_hibernate_crud_api_endpoints","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpriyansusahoo%2Fspringboot_hibernate_crud_api_endpoints","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpriyansusahoo%2Fspringboot_hibernate_crud_api_endpoints/lists"}