Compare commits
14 Commits
18622efff1
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ac8733d85a | ||
| 6dc60bdc8d | |||
| 511b8130b9 | |||
|
|
8c4c1231c8 | ||
|
|
37bbbfd6cf | ||
|
|
b4b1a7ab27 | ||
|
|
200e80b1bf | ||
|
|
cb7be19ae6 | ||
|
|
d7caa280a6 | ||
|
|
d78f481539 | ||
|
|
0e54a4a856 | ||
|
|
191b5d11f4 | ||
|
|
e5d5c3bd7f | ||
|
|
7b0a7b963a |
@@ -0,0 +1,2 @@
|
|||||||
|
This is the documentation of the project.
|
||||||
|
DOCUMENTATION
|
||||||
@@ -3,12 +3,17 @@ package com.example.demo;
|
|||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class DemoApplication {
|
public class DemoApplication {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
System.out.printl("Start application");
|
System.out.println("Start application from gitea.cs.pollub.pl");
|
||||||
SpringApplication.run(DemoApplication.class, args);
|
System.out.println(new Date());
|
||||||
}
|
SpringApplication.run(DemoApplication.class, args);
|
||||||
|
System.out.println(new Date());
|
||||||
|
System.out.println("End application");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
4
src/main/java/com/example/demo/domain/UserEntity.java
Normal file
4
src/main/java/com/example/demo/domain/UserEntity.java
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
package com.example.demo.domain;
|
||||||
|
|
||||||
|
public class UserEntity {
|
||||||
|
}
|
||||||
4
src/main/java/controller/UserController.java
Normal file
4
src/main/java/controller/UserController.java
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
package controller;
|
||||||
|
|
||||||
|
public class UserController {
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user