当前位置:   article > 正文

springboot @Value 读取配置文件数据_spring value读取int值

spring value读取int值

springboot @Value 读取配置文件数据

application.yml中

user:
  name: 罗小黑
  age: 5
  ability:
#yml 数组格式
    - 金
    - 空间
# list
  _ability: metal,space
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

在引导类的包下创建User类

package com.wsd.example.demo1;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

import java.util.Arrays;
import java.util.List;

//@Component 创建Bean对象交给spring容器管理
@Component
public class User {

    //将配置文件中的user.name的值注入给该属性
    @Value("${user.name}")
    private String name;

    //将配置文件中的user.age的值注入给该属性
    @Value("${user.age}")
    private int age;

    //将配置文件中的user._ability的值注入给该属性
    @Value("${user._ability}")
    private List ability;

    //将配置文件中的user.ability数组下标为1的值注入给该属性
    @Value("${user.ability[1]}")
    private String exceptional;

    @Override
    public String toString() {
        return "User{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", _ability=" + ability +
                ", exceptional='" + exceptional + '\'' +
                '}';
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

@Value 不能直接将配置文件中的整个数组注入给User的数组属性,
可以采用List的形式
https://blog.csdn.net/weixin_39581716/article/details/111170059

引导类

package com.wsd.example.demo1;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;

@SpringBootApplication
public class Demo1Application {

    public static void main(String[] args) {
        //返回值 context 为spring容器
        ConfigurableApplicationContext context = SpringApplication.run(Demo1Application.class, args);
        //从 spring容器 中 获取 User 类 的 Bean 对象
        User user = context.getBean(User.class);

        System.out.println(user);
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

结果:
在这里插入图片描述
https://blog.csdn.net/weixin_43949634/article/details/113961321
读取user.name获取到的是当前系统的用户名,而不是配置文件中的值

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

闽ICP备14008679号