Add UserEntity.java and modify logging in DemoApplication.java

This commit is contained in:
Adamad7 2024-10-15 14:42:17 +02:00
parent 13e851ef36
commit 206731b6c6
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");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
System.out.println("End application");
} }
} }

View File

@ -0,0 +1,4 @@
public class UserEntity {
public UserEntity() {
}
}