当前位置:   article > 正文

SpringBoot中使用@Value注解读取配置文件的属性值_读取配置文件的变量的注解

读取配置文件的变量的注解


SpringBoot项目中使用 @Value 注解读取配置文件的属性值,将值赋给类中的属性,这是很常见的操作,示例如下:

@Component
public class User {

    @Value("${test.username}")
    public String username;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

application.yaml 配置文件

test:
  username: tom
  • 1
  • 2

使用 @Value 注解有两点注意事项:

注意事项一:对象要交给 Spring 容器管理,也就是需要在类上加 @Component 等注解;

注意事项二:在静态变量上直接添加 @Value 注解是无效的。若要给静态变量赋值,可以在 set() 方法上加 @value 注解。

注意事项一

若对象不是由 Spring 容器管理,而是由我们手动 new 出来,那么 @Value 注解不能生效。示例如下:

public class User {

    @Value("${test.username}")
    public String username;
}
  • 1
  • 2
  • 3
  • 4
  • 5
test:
  username: tom
  • 1
  • 2

测试:

@SpringBootTest
class MyTestApplicationTests {

    @Test
    public void test() {
        User user = new User();
        System.out.println("username: " + user.username);
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

结果:

username: null
  • 1

注意事项二

先演示直接在静态变量上添加 @Value 注解:

@Component
public class User {

    @Value("${test.username}")
    public static String username;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
test:
  username: tom
  • 1
  • 2
@SpringBootTest
class MyTestApplicationTests {

    @Test
    public void test() {
        System.out.println("username: " + User.username);
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

结果:

username: null
  • 1

可见,在静态变量上直接添加 @Value 注解是无效的,正确的做法应是在 set() 方法上加 @value 注解。示例如下:

@Component
public class User {

    public static String username;

    @Value("${test.username}")
    public void setUsername(String username) {
        User.username = username;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
test:
  username: tom
  • 1
  • 2
@SpringBootTest
class MyTestApplicationTests {

    @Test
    public void test() {
        System.out.println("username: " + User.username);
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

结果:

username: tom
  • 1

如果有帮助的话,可以点个赞支持一下嘛

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/939248
推荐阅读
相关标签