返回顶部
首页 > 资讯 > 后端开发 > Python >SpringBoot使用spring.config.import多种方式导入配置文件
  • 534
分享到

SpringBoot使用spring.config.import多种方式导入配置文件

2024-04-02 19:04:59 534人浏览 八月长安

Python 官方文档:入门教程 => 点击学习

摘要

目录简介导入classpath下的配置文件导入系统目录下的配置文件导入Nacos配置中心的配置文件总结简介 SpringBoot从2.4.x版本开始支持了导入文件的方式来加载配置参数

简介

SpringBoot从2.4.x版本开始支持了导入文件的方式来加载配置参数,与spring.config.additional-location不同的是不用提前设置而且支持导入的文件类型相对来说要丰富很多。

我们只需要在application.properties/application.yml配置文件中通过spring.config.import属性配置需要导入的文件列表即可。

通过spring.config.import属性支持导入多种途径的配置文件,下面简单介绍几种。

导入classpath下的配置文件

可以导入classpath下任意目录的文件,使用方式如下所示:

spring:
  config:
    import:
    # 导入classpath下default目录下的default.properties配置文件
    - classpath:/default/default.properties
    # 导入classpath下service目录下的service.yml配置文件
    - classpath:/service/service.yml

src/main/resource下分别创建defaultservice目录,在default目录下创建default.properties、在service目录下创建sevice.yml

通过上面配置的属性导入后我们直接就可以在项目中通过@ConfigurationProperties@Value来注入使用。

src/main/resourcesrc/main/java目录编译后都会到classpath根目录下。

// default.properties
default.passWord=111111
// service.yml
service:
  id: example
  port: 9999
  index-path: /index
// default.properties
@Value("${default.password}")
private String defaultPassword;
---
// service.yml
@Configuration
@ConfigurationProperties(prefix = "service")
@Data
public class ServiceProperties {
    private String id;
    private int port;
    private String indexPath;
}

导入系统目录下的配置文件

可以导入操作系统目录下的配置文件,我在/Users/yuqiyu/Downloads目录下创建了名为system.properties的文件,导入方式如下所示:

spring:
  config:
    import:
    # 导入系统目录/Users/yuqiyu/Downloads下的system.properties配置文件
    - optional:/Users/yuqiyu/Downloads/system.properties

使用@ConfigurationProperties方式注入映射如下所示:

// system.properties
system.os=osx
system.jdk-version=11

// SystemProperties.java
@Data
@Configuration
@ConfigurationProperties(prefix = "system")
public class SystemProperties {
    private String os;
    private String jdkVersion;
}

导入Nacos配置中心的配置文件

NacosSpringCloud Alibaba发布了2021.0.1.0版本后对spring.config.import做了支持,可以直接通过加载Nacos Server内指定的配置文件。

首先我们使用Docker来创建一个Nacos Server容器,步骤如下所示:

# 拉取nacos-server镜像
docker pull nacos/nacos-server
# 创建并启动nacos-server容器
docker run --name nacos-quick -e MODE=standalone -p 8848:8848 -p 9848:9848 -d nacos/nacos-server:latest

访问Http://localhost:8848/nacos,使用默认账号nacos登录后在public命名空间下创建一个名为spring-config-import-example.yamlYAML格式的配置文件,内容如下所示:

config:
    source: nacos

SpringBoot项目中如果需要集成nacos,可以直接添加spring-cloud-starter-alibaba-nacos-config依赖,如下所示:

<dependency>
  <groupId>com.alibaba.cloud</groupId>
  <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  <version>2021.0.1.0</version>
</dependency>

导入方式如下所示:

spring:
  cloud:
    nacos:
      server-addr: localhost:8848
  config:
    import:
    # 导入nacos配置中心的配置文件
    - optional:nacos:spring-config-import-example.yaml

在项目中同样可以使用@ConfigurationProperties@Value来注入配置参数,如下所示:

@Value("${config.source}")
private String configSource;

总结

spring.config.import使用方式是多样化的,如果你需要自定义导入的方式,可以借鉴nacos对其实现的部分代码。

到此这篇关于SpringBoot使用spring.config.import多种方式导入配置文件的文章就介绍到这了,更多相关spring.config.import 导入配置文件内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: SpringBoot使用spring.config.import多种方式导入配置文件

本文链接: https://lsjlt.com/news/148397.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作