Spring Boot读取自定义配置文件
@value
首先,会想到使用@value注解,该注解只能去解析yaml文件中的简单类型,并绑定到对象属性中去。
felord: phone: 182******32 def: name: 码农小胖哥 blog: felord.cn we-chat: msw_623 dev: name: 码农小胖哥 blog: felord.cn we-chat: msw_623 type: juejin
对于上面的yaml配置,如果我们使用@value注解的话,冒号后面直接有值的key才能正确注入对应的值。例如felord.phone我们可以通过@value获取,但是felord.def不行,因为felord.def后面没有直接的值,它还有下一级选项。另外@value不支持yaml松散绑定语法,也就是说felord.def.wechat获取不到felord.def.we-chat的值。
@value是通过使用spring的spel表达式来获取对应的值的:
// 获取 yaml 中 felord.phone的值 并提供默认值 unknown @value("${felord.phone:unknown}") private string phone;
@value的使用场景是只需要获取配置文件中的某项值的情况下,如果我们需要将一个系列的值进行绑定注入就建议使用复杂对象的形式进行注入了。
@configurationproperties
@configurationproperties注解提供了我们将多个配置选项注入复杂对象的能力。它要求我们指定配置的共同前缀。比如我们要绑定felord.def下的所有配置项:
package cn.felord.yaml.properties; import lombok.data; import org.springframework.boot.context.properties.configurationproperties; import static cn.felord.yaml.properties.felorddefproperties.prefix; /** * @author felord.cn */ @data @configurationproperties(prefix) public class felorddefproperties { static final string prefix = "felord.def"; private string name; private string blog; private string wechat; }
我们注意到我们可以使用wechat接收we-chat的值,因为这种形式支持从驼峰camel-case到短横分隔命名kebab-case的自动转换。
如果我们使用@configurationproperties的话建议配置类命名后缀为properties,比如redis的后缀就是redisproperties,rabbitmq的为rabbitproperties。
另外我们如果想进行嵌套的话可以借助于@nestedconfigurationproperty注解实现。也可以借助于内部类。这里用内部类实现将开头yaml中所有的属性进行注入:
package cn.felord.yaml.properties; import lombok.data; import org.springframework.boot.context.properties.configurationproperties; import static cn.felord.yaml.properties.felordproperties.prefix; /** * 内部类和枚举配置. * * @author felord.cn */ @data @configurationproperties(prefix) public class felordproperties { static final string prefix = "felord"; private def def; private dev dev; private type type; @data public static class def { private string name; private string blog; private string wechat; } @data public static class dev { private string name; private string blog; private string wechat; } public enum type { juejin, sf, osc, csdn } }
单独使用@configurationproperties的话依然无法直接使用配置对象felorddefproperties,因为它并没有被注册为spring bean。我们可以通过两种方式来使得它生效。
显式注入 spring ioc
你可以使用@component、@configuration等注解将felorddefproperties注入spring ioc使之生效。
package cn.felord.yaml.properties; import lombok.data; import org.springframework.boot.context.properties.configurationproperties; import org.springframework.stereotype.component; import static cn.felord.yaml.properties.felorddefproperties.prefix; /** * 显式注入spring ioc * @author felord.cn */ @data @component @configurationproperties(prefix) public class felorddefproperties { static final string prefix = "felord.def"; private string name; private string blog; private string wechat; }
@enableconfigurationproperties
我们还可以使用注解@enableconfigurationproperties进行注册,这样就不需要显式声明配置类为spring bean了。
package cn.felord.yaml.configuration; import cn.felord.yaml.properties.felorddevproperties; import org.springframework.boot.context.properties.enableconfigurationproperties; import org.springframework.context.annotation.configuration; /** * 使用 {@link enableconfigurationproperties} 注册 {@link felorddevproperties}使之生效 * @author felord.cn */ @enableconfigurationproperties({felorddevproperties.class}) @configuration public class felordconfiguration { }
该注解需要显式的注册对应的配置类。
@configurationpropertiesscan
在spring boot 2.2.0.release中提供了一个扫描注解@configurationpropertiesscan。它可以扫描特定包下所有的被@configurationproperties标记的配置类,并将它们进行ioc注入。
package cn.felord.yaml; import org.springframework.boot.springapplication; import org.springframework.boot.autoconfigure.springbootapplication; import org.springframework.boot.context.properties.configurationpropertiesscan; import org.springframework.boot.context.properties.enableconfigurationproperties; /** * {@link configurationpropertiesscan} 同 {@link enableconfigurationproperties} 二选一 * * @see cn.felord.yaml.configuration.felordconfiguration * @author felord.cn */ @configurationpropertiesscan @springbootapplication public class springbootyamlapplication { public static void main(string[] args) { springapplication.run(springbootyamlapplication.class, args); } }
这非常适合自动注入和批量注入配置类的场景,但是有版本限制,必须在2.2.0及以上。
@propertysource注解
@propertysource可以用来加载指定的配置文件,默认它只能加载*.properties文件,不能加载诸如yaml等文件。
@propertysource相关属性介绍
- value:指明加载配置文件的路径。
- ignoreresourcenotfound:指定的配置文件不存在是否报错,默认是false。当设置为 true 时,若该文件不存在,程序不会报错。实际项目开发中,最好设置 ignoreresourcenotfound 为 false。
- encoding:指定读取属性文件所使用的编码,我们通常使用的是utf-8。
@data @allargsconstructor @noargsconstructor @builder @configuration @propertysource(value = {"classpath:common.properties"},ignoreresourcenotfound=false,encoding="utf-8") @configurationproperties(prefix = "author") public class author { private string name; private string job; private string sex; }
有小伙伴也许发现示例上的@configurationproperties注解了。当我们使用@value需要注入的值较多时,代码就会显得冗余。我们可以使用@configurationproperties 中的 prefix 用来指明我们配置文件中需要注入信息的前缀
前边提到了用@propertysource只能加载*.properties文件,但如果我们项目的配置文件不是*.properties这种类型,而是其他类型,诸如yaml,此时我们可以通过实现propertysourcefactory接口,重写createpropertysource方法,就能实现用@propertysource也能加载yaml等类型文件。
public class yamlpropertysourcefactory implements propertysourcefactory { @override public propertysource<?> createpropertysource(string sourcename, encodedresource resource) throws ioexception { properties propertiesfromyaml = loadyaml(resource); if(stringutils.isblank(sourcename)){ sourcename = resource.getresource().getfilename();; } return new propertiespropertysource(sourcename, propertiesfromyaml); } private properties loadyaml(encodedresource resource) throws filenotfoundexception { try { yamlpropertiesfactorybean factory = new yamlpropertiesfactorybean(); factory.setresources(resource.getresource()); factory.afterpropertiesset(); return factory.getobject(); } catch (illegalstateexception e) { // for ignoreresourcenotfound throwable cause = e.getcause(); if (cause instanceof filenotfoundexception) throw (filenotfoundexception) e.getcause(); throw e; } } }
@data @allargsconstructor @noargsconstructor @builder @configuration @propertysource(factory = yamlpropertysourcefactory.class,value = {"classpath:user.yml"},ignoreresourcenotfound=false,encoding="utf-8") @configurationproperties(prefix = "user") public class user { private string username; private string password; }
使用environmentpostprocessor加载自定义配置文件
1、实现environmentpostprocessor接口,重写postprocessenvironment方法
@slf4j public class customenvironmentpostprocessor implements environmentpostprocessor { @override public void postprocessenvironment(configurableenvironment environment, springapplication application) { properties properties = new properties(); try { properties.load(new inputstreamreader(customenvironmentpostprocessor.class.getclassloader().getresourceasstream("custom.properties"),"utf-8")); propertiespropertysource propertiespropertysource = new propertiespropertysource("custom",properties); environment.getpropertysources().addlast(propertiespropertysource); } catch (ioexception e) { log.error(e.getmessage(),e); } } }
2、在meta-inf下创建spring.factories
spring.factories文件内容如下: org.springframework.boot.env.environmentpostprocessor=com.github.lybgeek.env.customenvironmentpostprocessor
1、2步骤实现完后,就可以在代码中直接用@value的方式获取自定义配置文件内容了
读取的自定义配置文件内容的实现方法有多种多样,除了上面的方法,还可以在以-jar方式启动时,执行形如下命令
java -jar project.jar --spring.config.location=classpath:/config/custom.yml
也能实现。还可以干脆自定义配置文件都以application-*为前缀,比如application-custom,然后在application.properties,使用spring.profiles.include=custom或者spring.profiles.active=custom也可以实现
总结
日常开发中单个属性推荐使用@value,如果同一组属性为多个则推荐@configurationproperties。需要补充一点的是@configurationproperties还支持使用 jsr303 进行属性校验。好了今天的教程就到这里
相关的demo地址
以上就是spring boot读取自定义配置文件的详细内容,更多关于spring boot读取自定义配置文件的资料请关注其它相关文章!
推荐阅读
-
spring boot启动时加载外部配置文件的方法
-
干货:.net core实现读取自定义配置文件,有源代码哦
-
spring boot使用自定义的线程池执行Async任务
-
spring boot静态变量注入配置文件详解
-
Spring Boot 配置文件详解(小结)
-
Spring-Boot使用嵌入式容器,那怎么配置自定义Filter呢
-
spring-boot-2.0.3不一样系列之番外篇 - 自定义session管理,绝对有值得你看的地方
-
Spring boot 学习笔记 1 - 自定义错误
-
IDEA开发spring boot应用时 application.yml 或 application.properties 自定义属性提示
-
golang 使用 viper 读取自定义配置文件