This is an Employee Portal developed to illustrate basic CRUD operations and offered an Restful web-application. Technologies used are J2EE, Spring Boot, Hibernates, AngularJS, HTML, CSS.
For the sake of simplicity and easy to run, I have used H2 in-memory Database. To Get Started, kinldy download/clone the repository for running the application in your local system.
Your local system mush have JDK1.8
There are four Rest-end points for this application. The context-path is set as "/". Hence for home page, kindly access http://localhost:8080
- To insert a new employee - http://localhost:8080/api/employee - POST method
- To update an existing employee - https://localhost:8080/api/employee/{id} - PUT method
- To delete an existing employee - https://localhost:8080/api/employee/{id} - DELETE method
- To fetch all employees - http://localhost:8080/api/employee - GET method
- Maven - Dependency Management
- Naga Sai Hemanth Jamili - Initial work - hemanthjamili