Hi Experts ,
I have a simple REST CRUD Application for EmployeeManagement . The App has :-
1) EmployeeManagement.jsp :- This allows to Add, Update, Delete and Show employee details .
2) EmployeeList.jsp :- This shows a list of all employees present in the DB.
3) Employee.java :- POJO class to hold employee details
4) EmployeeDao.java :- Class to perform all employee related DB operations , like addEmployee() , getEmployee() , updateEmp() , getAllEmployees() , deleteEmp().
5) EmployeeService.java :- Service class that listens request from EmployeeManagement.jsp and calls the specific method of EmployeeDao.java.
Microservice architecture is not implemented in this application as the EmployeeService.java service class handles all the CRUD requests from the EmployeeManagement.jsp.
I am new to Java Microservices and want to implement Microservice Architecture in this simple EmployeeManagement application.
Please suggest how can I implement microservice concept in the application.
Thanks & Regards
Saswata Mandal