DemoApplication/src/main/java/com/example/demo/DemoApplication.java
MichuMGW 24e0f2b213 Add domain package with UserEntity class
Add println to the DemoApplication class
2025-10-03 11:36:13 +02:00

16 lines
388 B
Java

package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
System.out.println("Start application");
System.out.println("Develop_2 here");
SpringApplication.run(DemoApplication.class, args);
}
}