Compare commits

...

13 Commits

Author SHA1 Message Date
jagfoljersolen
f67ce10ab7 added printing date 2025-10-21 12:31:54 +01:00
7e2a581b75 Update src/main/java/controller/UserController.java 2025-10-21 11:28:24 +00:00
d8826f06d7 Update Readme.txt 2025-10-21 11:24:39 +00:00
jagfoljersolen
fce5a39e10 rozwiazano konflikty w DemoApplication.java 2025-10-14 13:31:13 +01:00
jagfoljersolen
1df672931e naprawiono konflikt w pliku DemoApplication.java 2025-10-14 13:28:04 +01:00
jagfoljersolen
3d18834720 dodano pole username w klasie UserController 2025-10-14 13:25:57 +01:00
jagfoljersolen
44167d16c3 dodano i usunieto linie w pliku UserEntity 2025-10-14 13:24:07 +01:00
jagfoljersolen
1299348847 Merge branch 'develop_3' 2025-10-14 13:17:16 +01:00
jagfoljersolen
8364cbbc9d dodano linię w main 2025-10-14 13:16:59 +01:00
jagfoljersolen
6ff47d6792 dodano komunikat w main 2025-10-14 13:15:16 +01:00
jagfoljersolen
821103bdb7 dodano komunikat w main 2025-10-14 13:11:38 +01:00
jagfoljersolen
21bcde3edd dodano komunikat w main 2025-10-14 13:09:49 +01:00
jagfoljersolen
ee8a4f7f5b dodano komunikat w main 2025-10-14 13:08:17 +01:00
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1 @@
This is documentation of the project.

View File

@@ -10,7 +10,17 @@ public class DemoApplication {
System.out.println("Start application"); System.out.println("Start application");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
System.out.println("No");
System.out.println("Yes");
System.out.println("End application"); System.out.println("End application");
System.out.println(new Date());
} }
} }

View File

@@ -1,4 +1,6 @@
package controller; package controller;
public class UserController { public class UserController {
int username;
String email;
} }