File tree 2 files changed +3
-3
lines changed
CRUD-SpringBoot-REST-API/src/main
java/com/mdtalalwasim/crudspringboot/controller
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ public String home(Model model) {
28
28
29
29
@ GetMapping ("/employee-home" )
30
30
public String employeeHome (Model model ) {
31
- System .out .println ("Entering employee home..." );
31
+ // System.out.println("Entering employee home...");
32
32
return "admin/employees/employees-home.html" ;
33
33
}
34
34
35
35
@ GetMapping ("/employee-edit-form/{employeeId}" )
36
36
public ModelAndView employeeEdit (Model model , @ PathVariable ("employeeId" ) long id ) {
37
37
ModelAndView mv = new ModelAndView ();
38
- System .out .println ("Entering Employee Edit" );
38
+ // System.out.println("Entering Employee Edit");
39
39
40
40
if (id != 0 ) {
41
41
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
18
18
19
19
spring.jpa.hibernate.ddl-auto =update
20
20
21
- spring.jpa.show-sql =true
21
+ # spring.jpa.show-sql=true
22
22
23
23
# file related configuration
24
24
You can’t perform that action at this time.
0 commit comments