Added UserEntity, modified UserApplication

This commit is contained in:
jd 2023-10-20 11:38:11 +02:00
parent 793f212cca
commit 35329dfc7f
2 changed files with 15 additions and 1 deletions

View File

@ -8,6 +8,7 @@ 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("Comment 2");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }

View File

@ -0,0 +1,13 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package com.example.demo.domain;
/**
*
* @author student
*/
public class UserEntity {
}