SpringBoot中CommandLineRunner接口起什么作用呢?
创始人
2024-02-08 18:25:50
0

转自:

SpringBoot中CommandLineRunner接口起什么作用呢?

下文笔者讲述SpringBoot中CommandLineRunner接口的功能简介说明,如下所示

SpringBoot中CommandLineRunner接口的简介

springboot中应用服务启动时会加载一些数据和运行一些应用的初始化动作如:删除临时文件,清除缓存信息,读取配置文件信息,数据库连接等此时这些操作就可以借助CommandLineRunner接口的功能
注意事项:1.SpringBoot提供CommandLineRunner接口当有该接口多个实现类时,提供了@order注解实现自定义执行顺序也可以实现Ordered接口来自定义顺序。2.Ordered的数字越小,优先级越高,也就是@Order(1)注解的类会在@Order(2)注解的类之前执行

例:

package com.java265.init;import com.java265.service.MyMethorClassService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;@Component
@Order(value=1)
public class SpringDataInit implements CommandLineRunner {@Autowiredprivate MyMethorClassService myMethorClassService;@Overridepublic void run(String... strings) throws Exception {int result = myMethorClassService.add(99, 777);System.out.println("----------SpringDataInit1---------"+result);}
}package com.java265.init;import com.java265.service.MyMethorClassService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;@Component
@Order(value=2)
public class SpringDataInit2 implements CommandLineRunner {@Autowiredprivate MyMethorClassService myMethorClassService;@Overridepublic void run(String... strings) throws Exception {int result = myMethorClassService.add(99, 777);System.out.println("----------SpringDataInit2---------"+result);}
}

SpringBoot提供的ApplicationRunner接口也可以满足该业务场景。不同点:ApplicationRunner中run方法的参数为ApplicationArguments,而CommandLineRunner接口中run方法的参数为String数组。想要更详细地获取命令行参数,那就使用ApplicationRunner接口

package com.java265.init;import com.java265.service.MyMethorClassService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.core.Ordered;
import org.springframework.stereotype.Component;@Component
//@Order(value=3)
public class SpringDataInit3 implements ApplicationRunner,Ordered {@Autowiredprivate MyMethorClassService myMethorClassService;@Overridepublic void run(ApplicationArguments applicationArguments) throws Exception {int result = myMethorClassService.add(10, 82);System.out.println("----------SpringDataInit3---------"+result);}@Overridepublic int getOrder() {return 3;}
}

在Spring框架中,使用ApplicationListener接口也可以满足该业务场景

package com.java265.init;
import com.java265.service.MyMethorClassService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationListener;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.event.ContextRefreshedEvent;@Configuration
public class SpringDoneDataInit implements ApplicationListener {@Autowiredprivate MyMethorClassService    myMethorClassService;@Overridepublic void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {int result = myMethorClassService.add(5, 10);System.out.println("----------SpringDoneDataInit---------"+result);}
}

spring内置的事件

ContextRefreshedEvent:ApplicationContext容器初始化或者刷新时触发该事件
ContextStartedEvent:当使用ConfigurableApplicationContext接口的start()方法启动ApplicationContext容器时触发该事件
ContextClosedEvent:当使用ConfigurableApplicationContext接口的close()方法关闭ApplicationContext容器时触发该事件
ContextStopedEvent:当使用ConfigurableApplicationContext接口的stop()方法停止ApplicationContext容器时触发该事件

相关内容

热门资讯

喜欢穿一身黑的男生性格(喜欢穿... 今天百科达人给各位分享喜欢穿一身黑的男生性格的知识,其中也会对喜欢穿一身黑衣服的男人人好相处吗进行解...
发春是什么意思(思春和发春是什... 本篇文章极速百科给大家谈谈发春是什么意思,以及思春和发春是什么意思对应的知识点,希望对各位有所帮助,...
网络用语zl是什么意思(zl是... 今天给各位分享网络用语zl是什么意思的知识,其中也会对zl是啥意思是什么网络用语进行解释,如果能碰巧...
为什么酷狗音乐自己唱的歌不能下... 本篇文章极速百科小编给大家谈谈为什么酷狗音乐自己唱的歌不能下载到本地?,以及为什么酷狗下载的歌曲不是...
华为下载未安装的文件去哪找(华... 今天百科达人给各位分享华为下载未安装的文件去哪找的知识,其中也会对华为下载未安装的文件去哪找到进行解...
家里可以做假山养金鱼吗(假山能... 今天百科达人给各位分享家里可以做假山养金鱼吗的知识,其中也会对假山能放鱼缸里吗进行解释,如果能碰巧解...
四分五裂是什么生肖什么动物(四... 本篇文章极速百科小编给大家谈谈四分五裂是什么生肖什么动物,以及四分五裂打一生肖是什么对应的知识点,希...
怎么往应用助手里添加应用(应用... 今天百科达人给各位分享怎么往应用助手里添加应用的知识,其中也会对应用助手怎么添加微信进行解释,如果能...
客厅放八骏马摆件可以吗(家里摆... 今天给各位分享客厅放八骏马摆件可以吗的知识,其中也会对家里摆八骏马摆件好吗进行解释,如果能碰巧解决你...
美团联名卡审核成功待激活(美团... 今天百科达人给各位分享美团联名卡审核成功待激活的知识,其中也会对美团联名卡审核未通过进行解释,如果能...