Add another println to the DemoApplication class

This commit is contained in:
MichuMGW 2025-10-03 11:45:04 +02:00
parent 5a97d76dc0
commit 537bc3d84e

View File

@ -10,6 +10,7 @@ public class DemoApplication {
System.out.println("Start application");
System.out.println("Develop_2 here");
System.out.println("Second println");
System.out.println("Third println");
SpringApplication.run(DemoApplication.class, args);
}