Files
spring-boot-examples/spring-boot-commandLineRunner/src/main/java/com/neo/runner/OrderRunner2.java
2018-03-29 13:20:32 +08:00

15 lines
403 B
Java

package com.neo.runner;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
@Component
@Order(2)
public class OrderRunner2 implements CommandLineRunner {
@Override
public void run(String... args) throws Exception {
System.out.println("The OrderRunner2 start to initialize ...");
}
}