SpringBoot项目启动时如何读取配置以及初始化资源

作者:Andya_net 时间:2021-11-19 04:04:11 

介绍

  在开发过程中,我们有时候会遇到非接口调用而出发程序执行任务的一些场景,比如我们使用quartz定时框架通过配置文件来启动定时任务时,或者一些初始化资源场景等触发的任务执行场景。

方法一:注解

方案

  通过使用注解@Configuration和@Bean来初始化资源,配置文件当然还是通过@Value进行注入。

  • @Configuration:用于定义配置类,可替换xml配置文件,被注解的类内部一般是包含了一个或者多个@Bean注解的方法。

  • @Bean:产生一个Bean对象,然后将Bean对象交给Spring管理,被注解的方法是会被AnnotationConfigApplicationContext或者AnnotationConfgWebApplicationContext扫描,用于构建bean定义,从而初始化Spring容器。产生这个对象的方法Spring只会调用一次,之后Spring就会将这个Bean对象放入自己的Ioc容器中。

补充@Configuration加载Spring:

  1. @Configuration配置spring并启动spring容器

  2. @Configuration启动容器+@Bean注册Bean

  3. @Configuration启动容器+@Component注册Bean

  4. 使用 AnnotationConfigApplicationContext 注册 AppContext 类的两种方法

  5. 配置Web应用程序(web.xml中配置AnnotationConfigApplicationContext)

示例


package com.example.andya.demo.conf;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
* @author andya
* @create 2020-06-24 14:37
*/
@Configuration
public class InitConfigTest {

@Value("${key}")
private String key;

@Bean
public String testInit(){
 System.out.println("init key: " + key);
 return key;
}
}

方法二:CommandLineRunner

方案

  实现CommandLineRunner接口,该接口中的Component会在所有Spring的Beans都初始化之后,在SpringApplication的run()之前执行。

  多个类需要有顺序的初始化资源时,我们还可以通过类注解@Order(n)进行优先级控制

示例


package com.example.andya.demo.service;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;

/**
* @author andya
* @create 2020-06-24 14:47
*/
@Component
public class CommandLineRunnerTest implements CommandLineRunner {

@Value("${key}")
private String key;

@Override
public void run(String... strings) throws Exception {
 System.out.println("command line runner, init key: " + key);
}
}

两个示例的运行结果

SpringBoot项目启动时如何读取配置以及初始化资源

来源:https://www.cnblogs.com/Andya/p/13187845.html

标签:springboot,配置,初始化
0
投稿

猜你喜欢

  • 在Java中判断两个Long对象是否相等

    2022-09-01 11:22:10
  • 基于SpringBoot启动类静态资源路径问题

    2023-07-20 05:53:16
  • Java中的this、package、import示例详解

    2021-06-10 10:37:50
  • Android仿微博个人详情页滚动到顶部的实例代码

    2021-10-29 15:32:34
  • Java实例讲解注解的应用

    2021-11-02 01:43:14
  • Android实现流光和光影移动效果代码

    2023-09-24 23:57:55
  • C#中跨线程访问控件问题解决方案分享

    2021-06-27 18:47:24
  • 分享几个Java工作中实用的代码优化技巧

    2023-11-28 12:04:50
  • java 启动exe程序,传递参数和获取参数操作

    2023-09-11 04:30:47
  • C#操作注册表之RegistryKey类

    2022-12-11 06:12:53
  • Java 17的一些新特性介绍

    2022-04-11 15:33:15
  • java查找字符串中的包含子字符串的个数实现代码

    2022-08-15 17:48:45
  • 解决Android软键盘弹出覆盖h5页面输入框问题

    2023-06-19 11:33:24
  • Android图片翻转动画简易实现代码

    2023-03-12 02:33:35
  • 解决android studio 打开java文件 内容全变了的问题

    2022-03-18 19:31:44
  • Android自定义view实现圆形、圆角和椭圆图片(BitmapShader图形渲染)

    2022-10-08 07:51:35
  • Android自定义view贝塞尔曲线

    2023-04-09 07:51:22
  • Java8深入学习之熟透Optional

    2023-08-24 21:27:54
  • C#字符串和Acsii码相互转换

    2022-09-24 00:12:07
  • maven创建spark项目的pom.xml文件配置demo

    2023-11-02 01:14:02
  • asp之家 软件编程 m.aspxhome.com