fix: 로컬 환경(Windows)에서 Folder Picker(AWT)가 작동하도록 Spring Boot headless 모드 비활성화
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 0s

This commit is contained in:
jade
2026-08-28 09:59:42 +09:00
parent afd9d57523
commit d5f644e666

View File

@@ -27,6 +27,6 @@ import org.springframework.scheduling.annotation.EnableScheduling;
@EnableScheduling
public class DatGatewayApplication {
public static void main(String[] args) {
SpringApplication.run(DatGatewayApplication.class, args);
new org.springframework.boot.builder.SpringApplicationBuilder(DatGatewayApplication.class).headless(false).run(args);
}
}