From 1e99209b1a9de95df5b32eef87ed28a9c94df282 Mon Sep 17 00:00:00 2001 From: Agnieszka Marzeda Date: Tue, 14 Oct 2025 11:21:01 +0200 Subject: [PATCH] Dodanie klasy domain.UserEntity i modyfikacja klasy main --- src/main/java/com/example/demo/DemoApplication.java | 1 + .../java/com/example/demo/domain/UserEntity.java | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 src/main/java/com/example/demo/domain/UserEntity.java diff --git a/src/main/java/com/example/demo/DemoApplication.java b/src/main/java/com/example/demo/DemoApplication.java index 2e4a942..1068126 100644 --- a/src/main/java/com/example/demo/DemoApplication.java +++ b/src/main/java/com/example/demo/DemoApplication.java @@ -8,6 +8,7 @@ public class DemoApplication { public static void main(String[] args) { System.out.println("Start application"); + System.out.println("Drugi komunikat"); SpringApplication.run(DemoApplication.class, args); } diff --git a/src/main/java/com/example/demo/domain/UserEntity.java b/src/main/java/com/example/demo/domain/UserEntity.java new file mode 100644 index 0000000..00610ba --- /dev/null +++ b/src/main/java/com/example/demo/domain/UserEntity.java @@ -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 agama + */ +public class UserEntity { + +}