forked from KostiantynMyroshnychenko/lab2k
Modified DemoApplication.java and added UserEntity (develop_2 work in progress)
This commit is contained in:
@@ -8,6 +8,7 @@ public class DemoApplication {
|
|||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(DemoApplication.class, args);
|
SpringApplication.run(DemoApplication.class, args);
|
||||||
|
System.out.println("Develop_2 branch change");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
5
src/main/java/com/example/demo/domain/UserEntity.java
Normal file
5
src/main/java/com/example/demo/domain/UserEntity.java
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
package com.example.demo.domain;
|
||||||
|
|
||||||
|
public class UserEntity {
|
||||||
|
private String name = "User";
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user