Added a new package (domain) with a new class file and modified DemoApplication.java

This commit is contained in:
musmike 2024-10-20 23:04:37 +02:00
parent d05b7d97e0
commit e58ee3337e
2 changed files with 5 additions and 0 deletions

View File

@ -9,6 +9,7 @@ public class DemoApplication {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("Start application"); System.out.println("Start application");
System.out.println("The second message"); System.out.println("The second message");
System.out.println("The third message");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }

View File

@ -0,0 +1,4 @@
package domain;
public class UserEntity {
}