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

Closed
forge-bot wants to merge 11 commits from forge/ACX-E2E-1785394564819-attempt-3-run-6ffc72749088 into main
Showing only changes of commit 3391272d17 - Show all commits

View file

@ -0,0 +1,15 @@
package com.acquirex;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Card Acquisition Approval System - Spring Boot 3 Application.
* Migrated from Spring Boot 2.x (javax) to Spring Boot 3.x (jakarta).
*/
@SpringBootApplication
public class AcquirexApplication {
public static void main(String[] args) {
SpringApplication.run(AcquirexApplication.class, args);
}
}