REST API with Spring Boot that connects to a database
- Update db configs in application.properties
- Create Employee entity
- Create DAO interface
- Create DAO implementation
- Create REST controller to use DAO
- Get list of employees
- Get single employee by ID
- Add a new employee
- Update an existing employee
- Delete an existing employee
- EmployeeRESTController<-->EmployeeService<-->EmployeeDAO