Console Application with Spring Boot: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 38: Line 38:
}
}
</syntaxhighlight>
</syntaxhighlight>
=Simplest Command Line Loop Implementation=

Revision as of 17:57, 31 October 2018

External

Internal

Overview

Starter Dependencies

dependencies {
    implementation('org.springframework.boot:spring-boot-starter')
}

Spring Boot Application Class

import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class MyCommandLineApplication implements CommandLineRunner {

    public static void main(String[] args) {
        SpringApplication.run(MyCommandLineApplication.class, args);
    }

    @Override
    public void run(String... args) throws Exception {

        System.out.println("running with " + Arrays.asList(args) + " ...");
    }
}

Simplest Command Line Loop Implementation