SpringBoot: 100个小知识点(1)——@Value

使用规则

  • 不能修饰static:
  • 不能修饰final
  • 不能在没有注册的类中使用,例如util类
  • 不能使用new方式去创建对象,必须使用注入的方式

基本用法

  • 获取配置中key为topicSuffix的值
@Value("${topicSuffix}")
private String topicSuffix;
  • 将topicSuffix赋值为topic
@Value("#{topic}")
private String topicSuffix;
  • 如果获取不到配置则使用默认值topic
@Value("${topicSuffix:topic}")
private String topicSuffix;

修饰Static或者final类型返回null

因为静态变量是类的属性,并不属于对象的属性,而Spring是基于对象的属性进行依赖注入的。所以用@Value注解注入静态变量是失败的。(约定大于配置)

  • 修饰static参数实践
@Component
public class StaticTest {

    @Value("${static.test:test}")
    public String test;

    public static String testStatic;

    /**
     * 方法1
     * @return
     */
    public String getTestStatic(){
        testStatic = this.test;
        return testStatic;
    }

    /**
     * 方法2
     * @param testStatic
     */
    @Value("${static.test:test}")
    public void setTestStatic(String testStatic){
        StaticTest.testStatic = testStatic;
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值