(转载)SpringBoot获得application.properties中数据的几种方式

SpringBoot获得application.properties中数据的几种方式(我的只有第二种方式适用,并且项目初始化的时候不能用,在项目启动后才可用)


第一种方式
@SpringBootApplication
public class SpringBoot01Application {


    public static void main(String[] args) {
        ConfigurableApplicationContext  context=SpringApplication.run(SpringBoot01Application.class, args);
        String str1=context.getEnvironment().getProperty("aaa");
        System.out.println(str1);
    }
}


第二种方式(自动装配到Bean中)
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Component;
 
@Component
public class Student {
    @Autowired
    private Environment env;
    public void speak() {
        System.out.println("=========>" + env.getProperty("aaa")); 
    }
}
 

第三种方式(使用@value注解)
package com.example.demo.entity;  
import org.springframework.beans.factory.annotation.Value;  
import org.springframework.context.annotation.PropertySource;  
import org.springframework.stereotype.Component;  
 
@Component  
@PropertySource("classpath:jdbc.properties")//如果是application.properties,就不用写@PropertyScource("application.properties"),其他名字用些  
public class Jdbc {   
    @Value("${jdbc.user}")
    private String user;      
    @Value("${jdbc.password}") 
    private String password;  
    public void speack(){  
        System.out.println("username:"+user+"------"+"password:"+password);  
    }  
}
 

 

来源:https://blog.csdn.net/qq_37171353/article/details/78005845

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值