This is a Spring Boot application for managing employees. It provides functionalities for creating, updating, deleting, and viewing employees.
Before launching the application, follow these steps to set up the database:
-
Install MySQL: If you haven't installed MySQL yet, you can download it here.
-
Create a Database: Open your MySQL client and create a new database named
springboot_ems
. -
Configure Database Connection: Update the
application.properties
file with your MySQL username and password.spring.datasource.url=jdbc:mysql://localhost:3306/springboot_ems spring.datasource.username=your_username spring.datasource.password=your_password
Run the application using the Maven wrapper:
./mvnw spring-boot:run
Explore the application with a visual demonstration: