コマンドライン引数を指定して起動するようなアプリをSpring Bootで作成する場合は CommandLineRunner を使います。 @EnableAutoConfiguration @ComponentScan public class Application implements CommandLineRunner { public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Override public void run(String... args) { // Do something... } } Spring Boot Reference Guide 20.6 Using the CommandLineRunner でも書かれているように Com