A simple Employee Management System built with Spring Boot and PostgreSQL.
This project demonstrates backend CRUD operations for managing employees.
- Java 17
- Spring Boot (Spring Web, Spring Data JPA)
- PostgreSQL
- Maven
git clone https://github.com/your-username/ems-api.git
cd ems-apiCreate a PostgreSQL database named ems. Copy the file src/main/resources/application.properties.example to:
src/main/resources/application.propertiesUpdate it with your local database username and password.
Using Maven wrapper:
./mvnw spring-boot:runOr from IntelliJ IDEA, run the EmsApplication main class.
The app starts on http://localhost:8080/ It exposes basic REST APIs for managing employees (add, update, delete, list).