spingboot启动时运行

Posted vmkash

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spingboot启动时运行相关的知识,希望对你有一定的参考价值。

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启动时运行的主要内容,如果未能解决你的问题,请参考以下文章

SpingBoot学习之启动方式

在ViewPager上,在onPageSelected上的片段上启动动画

spingboot linux 启动方式与脚本

ForegroundService没有从片段开始?

Tars | 第2篇 TarsJava SpingBoot启动与负载均衡源码初探 #yyds干货盘点#

scrapy按顺序启动多个爬虫代码片段(python3)