We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4205710 commit 5cce18fCopy full SHA for 5cce18f
spring-boot-secure-rest/src/main/java/com/ahasan/rest/controller/EmployeeController.java
@@ -39,6 +39,7 @@ public ResponseEntity<List<EmployeeDTO>> getAllEmployees() {
39
public ResponseEntity<EmployeeDTO> getEmployeeById(@RequestParam Long id) {
40
EmployeeDTO list = employeeService.findByEmployeeId(id);
41
return new ResponseEntity<>(list, HttpStatus.OK);
42
+
43
}
44
45
@PostMapping(value = { "/add", "/update" })
0 commit comments