{"id":19478348,"url":"https://github.com/priyansusahoo/springboot_hibernate_crud","last_synced_at":"2026-04-14T04:31:47.252Z","repository":{"id":216226402,"uuid":"740606149","full_name":"Priyansusahoo/SpringBoot_Hibernate_CRUD","owner":"Priyansusahoo","description":"Backend for Spring-Hibernate CRUD App using MySQL DB","archived":false,"fork":false,"pushed_at":"2024-01-11T14:26:41.000Z","size":131,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T16:43:36.087Z","etag":null,"topics":["api","controllers","entity","hibernate-jpa","json","mysql-database","spring-boot"],"latest_commit_sha":null,"homepage":"https://github.com/Priyansusahoo/SpringBoot_Hibernate_crud_API_EndPoints","language":"Java","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":"MIT-LICENSE.txt","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:28:44.000Z","updated_at":"2024-01-11T14:27:16.000Z","dependencies_parsed_at":"2024-01-09T04:54:56.404Z","dependency_job_id":"093858fb-e15f-4362-a674-ba2d7e4901d9","html_url":"https://github.com/Priyansusahoo/SpringBoot_Hibernate_CRUD","commit_stats":null,"previous_names":["priyansusahoo/springboot_hibernate_crud"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Priyansusahoo/SpringBoot_Hibernate_CRUD","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_CRUD","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_CRUD/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_CRUD/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_CRUD/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Priyansusahoo","download_url":"https://codeload.github.com/Priyansusahoo/SpringBoot_Hibernate_CRUD/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priyansusahoo%2FSpringBoot_Hibernate_CRUD/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31782736,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"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","controllers","entity","hibernate-jpa","json","mysql-database","spring-boot"],"created_at":"2024-11-10T19:49:31.205Z","updated_at":"2026-04-14T04:31:47.236Z","avatar_url":"https://github.com/Priyansusahoo.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spring Boot and Hibernate CRUD App using MySQL Database\n## API Endpoints for SpringBoot_Hibernate_CRUD with Sample INPUT:\n\u003c!-- #### [API End-Points GitHub Repository -\u003e](https://github.com/Priyansusahoo/SpringBoot_Hibernate_crud_API_EndPoints) --\u003e\n\n## 1. 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## 2. 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## 3. 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## 4. 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## 5. 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## 6. 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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpriyansusahoo%2Fspringboot_hibernate_crud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpriyansusahoo%2Fspringboot_hibernate_crud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpriyansusahoo%2Fspringboot_hibernate_crud/lists"}