{"id":20127960,"url":"https://github.com/aamirxshaikh/spring-boot-hibernate-rest-api","last_synced_at":"2026-05-08T22:31:58.169Z","repository":{"id":39855541,"uuid":"473287296","full_name":"aamirxshaikh/spring-boot-hibernate-rest-api","owner":"aamirxshaikh","description":"This repository contains a basic CRUD API built with Spring Boot and Hibernate, which allows users to perform CRUD operations on Employee data. With clear documentation and well-organized code, it's a great starting point for developers who want to learn about REST API development with Spring Boot and Hibernate.","archived":false,"fork":false,"pushed_at":"2023-03-03T18:15:10.000Z","size":90,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T21:27:17.003Z","etag":null,"topics":["hibernate","java","rest-api","spring-boot"],"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/aamirxshaikh.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":"2022-03-23T17:16:52.000Z","updated_at":"2023-03-03T18:18:00.000Z","dependencies_parsed_at":"2024-11-13T20:29:43.132Z","dependency_job_id":"e1723c8a-784c-410d-a34f-25ab876d7342","html_url":"https://github.com/aamirxshaikh/spring-boot-hibernate-rest-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aamirxshaikh/spring-boot-hibernate-rest-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aamirxshaikh%2Fspring-boot-hibernate-rest-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aamirxshaikh%2Fspring-boot-hibernate-rest-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aamirxshaikh%2Fspring-boot-hibernate-rest-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aamirxshaikh%2Fspring-boot-hibernate-rest-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aamirxshaikh","download_url":"https://codeload.github.com/aamirxshaikh/spring-boot-hibernate-rest-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aamirxshaikh%2Fspring-boot-hibernate-rest-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32800063,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["hibernate","java","rest-api","spring-boot"],"created_at":"2024-11-13T20:24:47.514Z","updated_at":"2026-05-08T22:31:58.154Z","avatar_url":"https://github.com/aamirxshaikh.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Basic Spring Boot CRUD REST API\n\nThis repository contains a simple CRUD REST API for managing employees built using Spring Boot and Hibernate. The purpose of this repository is to provide a basic example of how to create a REST API using Spring Boot and Hibernate.\n\n# Table of Contents\n\n- [Endpoints](#endpoints)\n    - [Employee](#employee)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n\n# Endpoints\n\nThis REST API provides the following endpoints:\n\n## Employee\n\n1. ### Get all Employees\n\n    This endpoint is used to retrieve a list of all employees.\n    \n    `GET /api/employees`\n\n2. ### Get Employee by Id\n\n    This endpoint is used to retrieve a specific employee by its ID.\n    \n    `GET /api/employees/{id}`\n\n3. ### Create an Employee\n\n    This endpoint is used to create new employee.\n    \n    `POST /api/employees`\n\n4. ### Update an Employee\n\n    This endpoint is used to update a specific employee by its ID.\n    \n    `PUT /api/employees/{id}`\n\n5. ### Delete an Employee\n\n    This endpoint is used to delete a specific employee by its ID.\n    \n    `DELETE /api/employees/{id}`\n\n# Installation\n\n1. To run the projects, you'll need to have Java installed on your machine. You can download Java from the [official website](https://www.java.com/en/download/).\n\n2. Install an Integrated Development Environment (IDE) such as IntelliJ  or Visual Studio Code.\n\n   - To install IntelliJ IDEA, follow the instructions on the [official website](https://www.jetbrains.com/idea/download/)\n\n   - To install Visual Studio Code, follow the instructions on the [official website](https://code.visualstudio.com/Download).\n\n# Usage\n\nTo run the application, please follow these steps:\n\n1. Clone the repository using the following command:\n\n   `git clone https://github.com/aamirxshaikh/spring-boot-hibernate-rest-api.git`\n\n2. Navigate into the project directory using the following command:\n\n   `cd spring-boot-hibernate-rest-api`\n\n3. You can simply run the project in the IntelliJ IDEA by clicking the \"run\" icon or you can run the application using the following command:\n\n   `mvn spring-boot:run`\n\n4. After the application is running, you can interact with the API by making HTTP requests to the endpoints listed above using tools like curl or Postman.\n\n# Contributing\n\nFeel free to contribute to this repository by improving the existing codebase or adding new features. Simply fork the repository, make your changes, and create a pull request. I'll be happy to review and merge your changes.\n\n# License\n\nThis repository is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faamirxshaikh%2Fspring-boot-hibernate-rest-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faamirxshaikh%2Fspring-boot-hibernate-rest-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faamirxshaikh%2Fspring-boot-hibernate-rest-api/lists"}