diff --git a/README.md b/README.md index 76441bc..6776a2d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,2 @@ -# angular-springboot-crud-example -https://www.javaguides.net/2021/08/angular-12-spring-boot-crud-example.html + Developed an Employee Application with a full-stack architecture, utilizing Angular for the front end and Spring Boot for the back end, implementing CRUD operations. -# angular-springboot-crud-example - complete tutorial -https://www.javaguides.net/2021/08/angular-crud-example-with-spring-boot.html diff --git a/springboot-backend/src/main/java/net/javaguides/springboot/controller/EmployeeController.java b/springboot-backend/src/main/java/net/javaguides/springboot/controller/EmployeeController.java index 541673f..05b9e7d 100644 --- a/springboot-backend/src/main/java/net/javaguides/springboot/controller/EmployeeController.java +++ b/springboot-backend/src/main/java/net/javaguides/springboot/controller/EmployeeController.java @@ -27,7 +27,7 @@ public class EmployeeController { @Autowired private EmployeeRepository employeeRepository; - + //get the all the employee details // get all employees @GetMapping("/employees") public List getAllEmployees(){