コマンドラインからSpringブートアプリケーションを実行する方法

Springブートアプリケーションは、 CommandLineRunner を拡張してアノテーション @EnableAutoConfiguration を追加することで、コマンドラインから実行できます。

クラスでは、runメソッドを拡張する必要もあります。

    @Override
    public void run(String... args) throws Exception {
	    // Put your logic here.

    } 

1-次のJavaファイルを作成します。

import org.springframework.boot.Banner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@EnableJpaRepositories
@EnableAutoConfiguration
public class StaticGenerator2 implements CommandLineRunner {
    
    public static void main(String[] args) throws Exception {

        //disabled banner, don't want to see the spring logo
        SpringApplication app = new SpringApplication(StaticGenerator2.class);
        app.setBannerMode(Banner.Mode.OFF);
        app.setWebEnvironment(false);

        // Call the run method
        app.run(args);

    }

    @Override
    public void run(String... args) throws Exception {
	    // Put your logic here.

    }
}

参考文献:

Java 8
Spring Boot