InitRunner.java 455 字节
Newer Older
武汉红喜's avatar
武汉红喜 已提交
1
package org.hongxi.whatsmars.spring.boot.controller;
武汉红喜's avatar
武汉红喜 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;

/**
 * Created by shenhongxi on 2017/6/29.
 */
@Component
@Order(value = 1)
public class InitRunner implements CommandLineRunner {
    @Override
    public void run(String... args) throws Exception {
        System.out.println("init......");
    }
}