From 972e5a7fad80ded4f9c4b31b10fb812ca8d2e682 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Tue, 14 Jul 2026 05:49:09 +0000 Subject: [PATCH] =?UTF-8?q?Spring=20=EC=A0=84=ED=99=98=20=EA=B3=A8?= =?UTF-8?q?=EA=B2=A9=20=EC=B5=9C=EC=8B=A0=20reviewer=20=EA=B2=80=EC=A6=9D?= =?UTF-8?q?=20(role-developer-reverify-550-001)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../example/SpringBootMinimalApplication.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/main/java/com/example/SpringBootMinimalApplication.java diff --git a/src/main/java/com/example/SpringBootMinimalApplication.java b/src/main/java/com/example/SpringBootMinimalApplication.java new file mode 100644 index 0000000..7962d79 --- /dev/null +++ b/src/main/java/com/example/SpringBootMinimalApplication.java @@ -0,0 +1,16 @@ +package com.example; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +/** + * Main Spring Boot application entry point. + * This is the minimum required class to bootstrap a Spring application. + */ +@SpringBootApplication +public class SpringBootMinimalApplication { + + public static void main(String[] args) { + SpringApplication.run(SpringBootMinimalApplication.class, args); + } +}