Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class EmployeeController {

@Autowired
private EmployeeRepository employeeRepository;

//get the all the employee details
// get all employees
@GetMapping("/employees")
public List<Employee> getAllEmployees(){
Expand Down