码迷,mamicode.com
首页 > 其他好文 > 详细

@Value

时间:2020-05-03 10:32:11      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:不同   key   vat   dom   code   math   com   调用   @Value   

@Data
@Component
//可以通过@ConfigurationProperties来自动绑定
//@ConfigurationProperties(prefix = "test2")
@PropertySource({"classpath:test.properties"})
public class SpELBean {
    // @Value 在spring包下, 必须将所在类注入到ioc中才会生效
    @Value("#{‘老王‘.concat(‘八‘)}")
    private String name;
    //调用注入到ioc中的bean, 支持三目运算
    @Value("#{spELBean.name.length()==3?-100:100}")
    private Integer age;
    // Elvis表达式, 与${}不同的是,${}使用Elvis表达式不用带?
    @Value("#{null?:100}")
    private Double score;
    @Value("#{‘100kg‘.toUpperCase()}")
    private String weight;
    /* 内置对象相当于
       system.getProperties*/
    @Value("#{systemProperties[‘user.dir‘]}")
    private String dir;
    //使用 T(...) 可以调用Jdk中的一些工具类的静态方法
    @Value("#{T(Math).random()*10}")
    private Double num;
    // T(...)对应Class类型
    @Value("#{T(Double)}")
    private Class<?> aClass;
    @Value("#{{‘a‘,‘b‘,‘c‘}}")
    private List<String> list1;
    //自定义的properties属性绑定list
    @Value("#{‘${test2.list}‘.split(‘,‘)}")
    private List<Integer> list3;
    //通过自定义的properties属性绑定map, key不带双引号
    @Value("#{${test2.map}")
    private Map<String, String> map;
}
test2.list=1,2,3,4,5
#map的key不用带双引号
test2.map={name:"张丹",age:12}

@Value

标签:不同   key   vat   dom   code   math   com   调用   @Value   

原文地址:https://www.cnblogs.com/kikochz/p/12820822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!