Spring Boot 项目启动时执行特定方法 - 坤哥的博客 - CSDN博客

标签: | 发表时间:2018-12-10 21:55 | 作者:
出处:https://blog.csdn.net

Springboot给我们提供了两种“开机启动”某些方法的方式:ApplicationRunner和CommandLineRunner。


这两种方法提供的目的是为了满足,在项目启动的时候立刻执行某些方法。我们可以通过实现ApplicationRunner和CommandLineRunner,来实现,他们都是在SpringApplication 执行之后开始执行的。


CommandLineRunner接口可以用来接收字符串数组的命令行参数,ApplicationRunner 是使用ApplicationArguments 用来接收参数的,貌似后者更牛逼一些。


先看看CommandLineRunner :


package com.springboot.study;


import org.springframework.boot.CommandLineRunner;

import org.springframework.stereotype.Component;


/**

 * Created by pangkunkun on 2017/9/3.

 */

@Component

public class MyCommandLineRunner implements CommandLineRunner{


    @Override

    public void run(String... var1) throws Exception{

        System.out.println("This will be execute when the project was started!");

    }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

ApplicationRunner :


package com.springboot.study;


import org.springframework.boot.ApplicationArguments;

import org.springframework.boot.ApplicationRunner;

import org.springframework.stereotype.Component;


/**

 * Created by pangkunkun on 2017/9/3.

 */

@Component

public class MyApplicationRunner implements ApplicationRunner {


    @Override

    public void run(ApplicationArguments var1) throws Exception{

        System.out.println("MyApplicationRunner class will be execute when the project was started!");

    }


}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

这两种方式的实现都很简单,直接实现了相应的接口就可以了。记得在类上加@Component注解。


如果想要指定启动方法执行的顺序,可以通过实现org.springframework.core.Ordered接口或者使用org.springframework.core.annotation.Order注解来实现。


这里我们以ApplicationRunner 为例来分别实现。


Ordered接口:


package com.springboot.study;


import org.springframework.boot.ApplicationArguments;

import org.springframework.boot.ApplicationRunner;

import org.springframework.core.Ordered;

import org.springframework.stereotype.Component;


/**

 * Created by pangkunkun on 2017/9/3.

 */

@Component

public class MyApplicationRunner implements ApplicationRunner,Ordered{



    @Override

    public int getOrder(){

        return 1;//通过设置这里的数字来知道指定顺序

    }


    @Override

    public void run(ApplicationArguments var1) throws Exception{

        System.out.println("MyApplicationRunner1!");

    }


}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

Order注解实现方式:


package com.springboot.study;


import org.springframework.boot.ApplicationArguments;

import org.springframework.boot.ApplicationRunner;

import org.springframework.core.Ordered;

import org.springframework.core.annotation.Order;

import org.springframework.stereotype.Component;


/**

 * Created by pangkunkun on 2017/9/3.

 * 这里通过设定value的值来指定执行顺序

 */

@Component

@Order(value = 1)

public class MyApplicationRunner implements ApplicationRunner{


    @Override

    public void run(ApplicationArguments var1) throws Exception{

        System.out.println("MyApplicationRunner1!");

    }


}


相关 [spring boot 项目] 推荐:

使用Spring Boot开发Web项目

- - ImportNew
前面两篇博客中我们简单介绍了spring Boot项目的创建、并且也带小伙伴们来DIY了一个Spring Boot自动配置功能,那么这些东西说到底最终还是要回归到Web上才能体现出它的更大的价值,so,今天我们就来看一下如何使用Spring Boot来开发Web项目. 当然,如果小伙伴对Spring Boot尚不熟悉的话,可以先参考一下这两篇博客:.

docker容器部署Spring Boot项目及更新

- - 编程语言 - ITeye博客
Docker这项容器技术已经是十分的火热了,读者要是不了解docker的话可以吧docker先理解为虚拟机. 我们的Springboot最终是要部署在Linux上的,docker作为Linux轻量级的实现. docker也是可以用来部署Springboot应用的. 1.创建Dockerfile . 创建一个文件名为Dockerfile的文件,复制以下内容到文件中.

为你 Spring Boot 项目自定义一个通用的异常

- - IT瘾-dev
本文出自《Springboot》专题系列. 我们的项目通常来讲都是一个比较大的项目,包含了各种各样的服务. 如果每个服务都以不同的方式返回异常信息,这样排查的时候就会比较凌乱. 如果我们定义一个标准的异常处理体系. 本文开发环境基于springboot2.4,IDE环境是IDEA. 逐步过渡到完全自定义自己的异常.

Spring boot传统部署

- - 企业架构 - ITeye博客
使用spring boot很方便,一个jar包就可以启动了,因为它里面内嵌了tomcat等服务器. 但是spring boot也提供了部署到独立服务器的方法. 如果你看文档的话,从jar转换为war包很简单,pom.xml的配置修改略去不讲. 只看source的修改,很简单,只要一个配置类,继承自SpringBootServletInitializer, 并覆盖configure方法.

值得使用的Spring Boot

- - ImportNew
2013年12月12日,Spring发布了4.0版本. 这个本来只是作为Java平台上的控制反转容器的库,经过将近10年的发展已经成为了一个巨无霸产品. 不过其依靠良好的分层设计,每个功能模块都能保持较好的独立性,是Java平台不可多得的好用的开源应用程序框架. Spring的4.0版本可以说是一个重大的更新,其全面支持Java8,并且对Groovy语言也有良好的支持.

Spring Boot配置多个DataSource

- - 廖雪峰的官方网站
使用Spring Boot时,默认情况下,配置 DataSource非常容易. Spring Boot会自动为我们配置好一个 DataSource. 如果在 application.yml中指定了 spring.datasource的相关配置,Spring Boot就会使用该配置创建一个 DataSource.

Spring boot executable jar/war 原理

- - ImportNew
spring boot里其实不仅可以直接以 Java -jar demo.jar的方式启动,还可以把jar/war变为一个可以执行的脚本来启动,比如./demo.jar. 把这个executable jar/war 链接到/etc/init.d下面,还可以变为Linux下的一个service. 只要在spring boot maven plugin里配置:.

Spring Boot Starter是什么?

- - 技术,永无止境
在工作中我们经常能看到各种各样的springboot starter,如spring-cloud-netflix、spring-cloud-alibaba等等. 这些starter究竟有什么作用呢. 在了解这些starter之前,我们需要先大概知道Spring MVC与Spring Boot的关系.

SPRING BOOT OAUTH2 + KEYCLOAK - service to service call

- - BlogJava-首页技术区
employee-service调用department-service,如果要按OAUTH2.0流程,只需要提供client-id和client-secrect即可. 在KEYCLOAK中引入service-account,即配置该employee-service时,取消standard-flow,同时激活service-account.

spring boot与spring batch、postgres及elasticsearch整合

- - 互联网 - ITeye博客
当系统有大量数据需要从数据库导入elasticsearch时,使用sping batch可以提高导入的效率. 这篇文章使用spring batch将数据从postgres导入elasticsearch. 本文使用spring data jest连接ES(也可以使用spring data elasticsearch连接ES),ES版本为5.5.3.