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全局配置文件及配置文件属性值注入

Springboot的常规属性配置和类型安全配置

SpringBoot框架

Java 微服务 乐优网络商城 day02 源代码 SpringBoot 属性注入 自动配置

springboot 配置的参数注入

SpringBoot进行属性的注入,list,map,arr,和其他的属性的注入