This commit is contained in:
Manyxyz
2025-10-14 14:16:27 +02:00
3 changed files with 12 additions and 0 deletions

View File

@@ -9,7 +9,11 @@ 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("Another message"); System.out.println("Another message");
System.out.println("Second message");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }

View File

@@ -0,0 +1,4 @@
package com.example.demo.controller;
public class User {
}

View File

@@ -0,0 +1,4 @@
package com.example.demo.controller;
public class UserController {
}