카드 매입 승인 경로 Spring Boot 3 전환 #5

Closed
forge-bot wants to merge 8 commits from forge/ACX-E2E-1785394564819-attempt-6-run-ca40abcdb5d2 into main
Showing only changes of commit 77ecc7ae5d - Show all commits

View file

@ -0,0 +1,20 @@
package com.acquirex;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* 카드 매입 승인 경로 Spring Boot 3 애플리케이션
*
* Spring Boot 3.x 마이그레이션:
* - Java 17+ 필수
* - Jakarta EE 9+ (javax.* jakarta.*)
* - Spring Framework 6.x
*/
@SpringBootApplication
public class AcquirexApplication {
public static void main(String[] args) {
SpringApplication.run(AcquirexApplication.class, args);
}
}