Skip to content

Commit 5ad448e

Browse files
committed
Updated.
1 parent 3196f3d commit 5ad448e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: CRUD-SpringBoot-REST-API/src/main/java/com/mdtalalwasim/crudspringboot/controller/EmployeeController.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ public String home(Model model) {
2828

2929
@GetMapping("/employee-home")
3030
public String employeeHome(Model model) {
31-
System.out.println("Entering employee home...");
31+
//System.out.println("Entering employee home...");
3232
return "admin/employees/employees-home.html";
3333
}
3434

3535
@GetMapping("/employee-edit-form/{employeeId}")
3636
public ModelAndView employeeEdit(Model model, @PathVariable("employeeId") long id) {
3737
ModelAndView mv = new ModelAndView();
38-
System.out.println("Entering Employee Edit");
38+
//System.out.println("Entering Employee Edit");
3939

4040
if(id != 0) {
4141

Diff for: CRUD-SpringBoot-REST-API/src/main/resources/application.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
1818

1919
spring.jpa.hibernate.ddl-auto=update
2020

21-
spring.jpa.show-sql=true
21+
#spring.jpa.show-sql=true
2222

2323
#file related configuration
2424

0 commit comments

Comments
 (0)