Added domain package. BasicApp.java edited

This commit is contained in:
Mykola Derevianko 2025-10-03 11:10:13 +02:00
parent de4de15eef
commit 4bbe6d051b
2 changed files with 14 additions and 0 deletions

View File

@ -8,6 +8,7 @@ public class BasicApplication {
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("Start application develop_2");
SpringApplication.run(BasicApplication.class, args); SpringApplication.run(BasicApplication.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.domain;
/**
*
* @author student
*/
public class UserEntity {
}