Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Implementing MicroServices in REST CRUD App

SASWATA MANDALMay 17 2020 — edited Jun 13 2020

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 

Comments
Post Details
Added on May 17 2020
2 comments
435 views