Add println with date in DemoApplication class
This commit is contained in:
parent
a2b14336fc
commit
d38aa8dd4d
@ -3,6 +3,8 @@ package com.example.demo;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@SpringBootApplication
|
||||
public class DemoApplication {
|
||||
|
||||
@ -13,6 +15,8 @@ public class DemoApplication {
|
||||
System.out.println("Third println");
|
||||
System.out.println("Fourth println");
|
||||
|
||||
System.out.println(new Date());
|
||||
|
||||
SpringApplication.run(DemoApplication.class, args);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user