服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - JAVA教程 - SpringBoot项目启动时如何读取配置以及初始化资源

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

2020-06-28 12:10Andya_net JAVA教程

这篇文章主要给大家介绍了关于SpringBoot项目启动时如何读取配置以及初始化资源的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者使用SpringBoot具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧

介绍

  在开发过程中,我们有时候会遇到非接口调用而出发程序执行任务的一些场景,比如我们使用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)

示例

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)进行优先级控制

示例

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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项目启动时如何读取配置以及初始化资源

总结

到此这篇关于SpringBoot项目启动时如何读取配置以及初始化资源的文章就介绍到这了,更多相关SpringBoot启动时读取配置及初始化资源内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://www.cnblogs.com/Andya/p/13187845.html

延伸 · 阅读

精彩推荐