码迷,mamicode.com
首页 > 其他好文 > 详细

spingboot启动时运行

时间:2018-05-18 14:02:14      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:val   spring   des   system   ping   name   source   ===   todo   

spingboot启动时运行

通过实现接口 CommandLineRunner 来实现

package com.hisfront.vh.init;

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

/**
 * @file_name:Init1.java
 * @description:
 *
 * @time:2018年5月18日 上午9:56:27
 * @author:sf
 */
@Component
@Order(value = 1)
public class Init1 implements CommandLineRunner {

    @Override
    public void run(String... args) throws Exception {
        // TODO Auto-generated method stub
        System.out.println("============> value=1");
    }
}
package com.hisfront.vh.init;

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

/**
 * @file_name:Init2.java
 * @description:
 *
 * @time:2018年5月18日 上午9:56:27
 * @author:sf
 */
@Component
@Order(value = 2)
public class Init2 implements CommandLineRunner {

    @Override
    public void run(String... args) throws Exception {
        // TODO Auto-generated method stub
        System.out.println("============> value=2");
    }
}

效果

============> value=1
============> value=2

spingboot启动时运行

标签:val   spring   des   system   ping   name   source   ===   todo   

原文地址:https://www.cnblogs.com/vmkash/p/9055248.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!