Compare commits

..

10 Commits

Author SHA1 Message Date
MichuMGW
0dbf4aede2 Merge branch_2 with master 2025-10-03 11:49:48 +02:00
MichuMGW
6dfd87adb4 Merge branch_1 with master 2025-10-03 11:46:45 +02:00
MichuMGW
537bc3d84e Add another println to the DemoApplication class 2025-10-03 11:45:04 +02:00
MichuMGW
5a97d76dc0 Add missing semicolon in DemoApplication class 2025-10-03 11:43:51 +02:00
MichuMGW
12f1b96237 Delete println from DemoApplication class 2025-10-03 11:43:10 +02:00
MichuMGW
da74eeba16 Merged branch develop_1 with master 2025-10-03 11:41:32 +02:00
MichuMGW
24e0f2b213 Add domain package with UserEntity class
Add println to the DemoApplication class
2025-10-03 11:36:13 +02:00
MichuMGW
96c9b79543 Modify DemoApplication class
Add UserController class
2025-10-03 11:30:01 +02:00
MichuMGW
55dbe58657 Delete ClassToDelete from the repository 2025-10-03 11:21:22 +02:00
MichuMGW
b3b5790389 Add ClassToDelete to the repository 2025-10-03 11:20:48 +02:00
3 changed files with 12 additions and 0 deletions

View File

@ -8,6 +8,10 @@ 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("Develop_2 here");
System.out.println("Second println");
System.out.println("Third println");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }

View File

@ -0,0 +1,4 @@
package controller;
public class UserController {
}

View File

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