SpringBoot-配置文件属性注入-2种方式
Posted 小蜗爬爬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot-配置文件属性注入-2种方式相关的知识,希望对你有一定的参考价值。
方式一:
@Component @Data public class PropertyBean { @Value("${datasource.url}") private String url; @Value("${datasource.username}") private String userName; }
方式二:
@Component @Configuration @EnableAutoConfiguration public class PropertyBeanUtil { @Bean @ConfigurationProperties(prefix = "datasource") public PropertyBean propertyBean() { return new PropertyBean(); } }
配置文件:
datasource.username = admin
datasource.url = /hello/world
以上是关于SpringBoot-配置文件属性注入-2种方式的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot基础学习 SpringBoot全局配置文件及配置文件属性值注入