mirror of
https://github.com/ityouknow/spring-boot-examples.git
synced 2026-05-20 04:31:57 +08:00
16 lines
469 B
Java
16 lines
469 B
Java
package com.neo;
|
|
|
|
import org.springframework.boot.CommandLineRunner;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
@SpringBootApplication
|
|
public class CommandLineRunnerApplication {
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println("The service to start.");
|
|
SpringApplication.run(CommandLineRunnerApplication.class, args);
|
|
System.out.println("The service has started.");
|
|
}
|
|
}
|