为了账号安全,请及时绑定邮箱和手机立即绑定

SpringBoot启动执行初始化代码

标签:
SpringBoot

利用CommandLineRunner、EnvironmentAware在Spring boot启动时执行初始化代码

import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.CommandLineRunner;import org.springframework.context.EnvironmentAware;import org.springframework.core.annotation.Order;import org.springframework.core.env.Environment;import org.springframework.stereotype.Component;import java.util.List;@Component//如果有多个这样的类时,可以通过Order指定执行顺序,数值越小执行优先级越高@Order(value = 0)public class InitSystemConfig implements CommandLineRunner, EnvironmentAware {    /*
     * 在服务启动后执行,会在@Bean实例化之后执行,故如果@Bean需要依赖这里的话会出问题
     */
    @Override
    public void run(String... args) {        //这里可以根据数据库返回结果创建一些对象、启动一些线程等
        

    }    /*
     * 在SystemConfigDao实例化之后、@Bean实例化之前执行
     * 常用于读取数据库配置以供其它bean使用
     * environment对象可以获取配置文件的配置,也可以把配置设置到该对象中
     */
    @Override
    public void setEnvironment(Environment environment) {

    }
}

github主页:https://github.com/xvjialing



作者:褪色的记忆1994
链接:https://www.jianshu.com/p/7826ce1d95ee

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消