返回顶部
首页 > 资讯 > 精选 >Spring Boot怎么正确读取配置文件属性
  • 427
分享到

Spring Boot怎么正确读取配置文件属性

2023-06-30 06:06:02 427人浏览 安东尼
摘要

这篇“spring Boot怎么正确读取配置文件属性”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Spring&n

这篇“spring Boot怎么正确读取配置文件属性”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Spring Boot怎么正确读取配置文件属性”文章吧。

    @Value

    @Value用来读取application.yml配置文件中属性的值。

    示例代码

    application.yml文件中属性:

    //定义属性fileName : testisFile : falsefilePath : c://test

    @value读取application.yml属性值:

    @Configurationpublic class FileConfig{    @Value("${fileName}")    private final String fileName;    @Value("${isFile}")    private boolean isFile;    @Value("${filePath}")    private static String filePath;}

    测试:

     @Autowired    private FileConfig fileConfig;    @GetMapping("getFileConfig")    public void getFileConfig()    {        logger.info("fileConfig:{}",fileConfig);    }

    运行结果:

    fileConfig:FileConfig [fileName=, isFile=false, filePath=null]

    特别注意:

    • @Value不能将属性值读取静态变量,否则读取的值为空。

    • @Value不能将属性值读取常量,否则读取的值为空。

    • @Value不能读取boolean类型的值,经过测试Spring Boot2.1的版本是无效的,2.2以上版本支持。

    所以个人建议非必要情况,尽量少用@Value注解读取属性值。

    @ConfigurationProperties

    读取配置文件值并且转换成类对象,便于获取值和修改属性值。

    示例代码

    application.yml文件中属性:

    Http:  pool:    # 连接超时    connectTimeout: 5000    #获取连接池中连接超时    connectionRequestTimeout: 1000    #每个路由连接数量    defaultMaxPerRoute: 50    # /连接池中最大连接数    maxTotal: 50    # 服务器返回数据(response)的时间    SocketTimeout: 5000    #定义不活动的时间(以毫秒为单位),连接回收    validateAfterInactivity: 30000

    @ConfigurationProperties读取application.yml中以http.pool开头的属性值:

    //以http.pool开头@Component@ConfigurationProperties(prefix = "http.pool")public class HttpClientConfig implements Serializable{    private static final long serialVersionUID = -4608251658338406043L;        private Integer maxTotal;        private Integer defaultMaxPerRoute;        private Integer connectTimeout;        private Integer connectionRequestTimeout;        private Integer socketTimeout;

    测试:

      @GetMapping("getHttpClientConfig")    public void getHttpClientConfig()    {        String JSON=FastjsonUtil.toJSONString(httpClientConfig);        logger.info("fileConfig:{}",json);    }

    属性嵌套:

    @ConfigurationProperties 可以嵌套List、map、class

    config:  url:http://localhsot:8080  gaode-map:    host: https://restapi.amap.com/v3    key: 1234@ConfigurationProperties(prefix="config")public class Config{    //高德地图信息    private GaodeMap gaodeMap; }

    特别注意:

    • 默认情况不会将实体注入到spring的容器中,需要结合@EnableConfigurationProperties或者@Component一起使用,否则注入对象为空。

    @EnableConfigurationProperties

    @ConfigurationProperties读取对象注入到spring容器中。例如上述示例也可以采用@EnableConfigurationProperties 来注入

    @EnableConfigurationProperties(HttpClientConfig.class)public class FileController{    private Logger logger = LoggerFactory.getLogger(FileController.class);    @Autowired    private FileConfig fileConfig;    @GetMapping("getHttpClientConfig")    public void getHttpClientConfig()    {        String json=FastJsonUtil.toJSONString(httpClientConfig);        logger.info("fileConfig:{}",json);    }  }

    @ConfigurationPropertiesScan

    用来扫描@ConfigurationProperties实体类并将类注入到Spring容器,上述示例可以如下使用

    @ConfigurationPropertiesScan("com.xx.fw.config")public class FwCoreApplication{    public static void main(String[] args)    {        SpringApplication.run(FwCoreApplication.class, args);    }}

    @PropertySource

    @PropertySource 主要用于读取指定的配置文件,需要结合@ConfigurationProperties 注解一起使用实现配置文件和Java Bean的注入操作。

    示例代码

    属性文件user.properteis:

    user.id=222user.name=剑圣user.age=28

    实体类定义:

    @Component@ConfigurationProperties(prefix = "user")@PropertySource(value = {"classpath:user.properties"})public class UserConfig {    private String id;    private String name;    private int age; }

    测试:

        @GetMapping("getUserConfig")    public void getUserConfig()    {        String json=FastJsonUtil.toJSONString(userConfig);        logger.info("userConfig:{}",json);    }

    输出结果:

    c.s.fw.controller.FileController - userConfig:{"age":28,"id":"123","name":"admin"}

    以上就是关于“Spring Boot怎么正确读取配置文件属性”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网精选频道。

    --结束END--

    本文标题: Spring Boot怎么正确读取配置文件属性

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

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

    猜你喜欢
    • Spring Boot怎么正确读取配置文件属性
      这篇“Spring Boot怎么正确读取配置文件属性”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Spring&n...
      99+
      2023-06-30
    • Spring Boot 如何正确读取配置文件属性
      目录前言@Value示例代码@ConfigurationProperties示例代码@EnableConfigurationProperties@ConfigurationPrope...
      99+
      2024-04-02
    • spring boot怎么获取配置文件的属性
      这篇文章主要介绍“spring boot怎么获取配置文件的属性”,在日常操作中,相信很多人在spring boot怎么获取配置文件的属性问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”spring boot怎么...
      99+
      2023-06-05
    • Spring Boot怎么读取自定义配置文件
      这篇文章给大家分享的是有关Spring Boot怎么读取自定义配置文件的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。@Value首先,会想到使用@Value注解,该注解只能去解析yaml文件中的简单类型,并绑定到...
      99+
      2023-06-15
    • Spring Boot读取自定义配置文件
      目录@Value @ConfigurationProperties 显式注入 Spring IoC @EnableConfigurationProperties @Configura...
      99+
      2024-04-02
    • Spring配置文件无法读取properties属性的解决
      目录Spring配置文件无法读取properties@Value读取properties类型错误Invalid boolean value [${spring.datasource....
      99+
      2024-04-02
    • spring-boot如何读取props和yml配置文件
      这篇文章主要介绍spring-boot如何读取props和yml配置文件,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!最近微框架spring-boot很火,笔者也跟风学习了一下,废话不多说,现给出一个读取配置文件的例...
      99+
      2023-05-30
      spring boot props
    • Spring boot读取外部化怎么配置
      本篇内容主要讲解“Spring boot读取外部化怎么配置”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Spring boot读取外部化怎么配置”吧!1. Propertie...
      99+
      2023-06-29
    • Spring Boot读取Yml配置文件的3种方法
      简述: 项目开发中难免要读取配置文件,本文结合开发经验介绍几种使用过的读取配置文件的方法。 1.基础用法,使用注解@Autowired注入Environment类 这种方式比较常见,就像注入service或者dao一样,声明一个Env...
      99+
      2023-09-03
      spring boot java spring Powered by 金山文档
    • properties配置文件如何使用Spring Boot进行读取
      这篇文章给大家介绍properties配置文件如何使用Spring Boot进行读取,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。在SpringApplication类中: private ConfigurableE...
      99+
      2023-05-31
      springboot properties
    • java springboot中如何读取配置文件的属性
      目录配置文件(1)使用注解@Value映射(2)使用@ConfigurationProperties映射(3)推荐使用:极简方式 @Bean和@ConfigurationProper...
      99+
      2024-04-02
    • 详解Spring-boot中读取config配置文件的两种方式
      了解过spring-Boot这个技术的,应该知道Spring-Boot的核心配置文件application.properties,当然也可以通过注解自定义配置文件的信息。Spring-Boot读取配置文件的方式:一.读取核心配置文件信息ap...
      99+
      2023-05-31
      spring boot config
    • 一文详解Spring是怎么读取配置Xml文件的
      目录Spring读取配置文件DocumentElementDocumentDefaultsDefinitionSpring读取配置文件Document 在XmlBeanDefinit...
      99+
      2024-04-02
    • springboot怎么读取配置文件
      在Spring Boot中,可以通过`@Value`注解、`Environment`接口、`@ConfigurationProper...
      99+
      2023-10-25
      springboot
    • Python怎么读取配置文件
      这篇文章主要讲解了“Python怎么读取配置文件”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Python怎么读取配置文件”吧!一、 yaml1、 准备支持的数据类型:字典、列表、字符串、布...
      99+
      2023-07-05
    • shell怎么读取配置文件
      本篇内容介绍了“shell怎么读取配置文件”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!在编写启动脚本时,涉及到读取配置文件,特地记录下sh...
      99+
      2023-07-06
    • Spring Boot读取配置文件内容的3种方式(@Value、Environment和@ConfigurationProperties)
      目录前言一、@Value二、Environment2.1 注入对象2.2 调用获取属性的方法2.3 上述两种方法对比三、@ConfigurationProperties3.1 创建一...
      99+
      2023-01-04
      springboot中读取配置文件 spring boot读取配置文件 springboot如何读取配置文件
    • 怎么对Spring Boot配置文件进行多环境配置
      这期内容当中小编将会给大家带来有关怎么对Spring Boot配置文件进行多环境配置,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。一. 多环境配置的好处:不同环境配置可以配置不同的参数~便于部署,提高效率...
      99+
      2023-05-31
      springboot spring boo bo
    • java怎么读取properties配置文件
      在Java中,可以使用`java.util.Properties`类来读取.properties配置文件。下面是一个简单的示例代码:...
      99+
      2023-09-20
      java
    • java怎么读取xml配置文件
      在Java中,读取XML配置文件有多种方法,其中比较常用的是使用DOM解析器或者SAX解析器。1. 使用DOM解析器:```java...
      99+
      2023-09-11
      java
    软考高级职称资格查询
    编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
    • 官方手机版

    • 微信公众号

    • 商务合作