spring boot配置文件配置参数的方法
Posted otways
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot配置文件配置参数的方法相关的知识,希望对你有一定的参考价值。
第一种:类头部加上这个注解
@ConfigurationProperties(prefix = "application.sms")
配置文件加上
application: sms: 具体参数
二、类头部加上这个注解
@ConfigurationProperties(prefix = "config",ignoreUnknownFields=true,ignoreInvalidFields=true)
在具体的参数上加上
@Value("$config.01username") private String userName;
配置文件加上
config.kafkaAddress: aaa
以上是关于spring boot配置文件配置参数的方法的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot 学习 四:spring boot 配置文件 application.yml
最全Spring Boot2.x系列Config配置集成篇-1参数配置