使用@Component和@Autowired时的Spring bean基本属性?

使用@Component和@Autowired时的Spring bean基本属性?,第1张

使用@Component和@Autowired时的Spring bean基本属性

对于基元,可以使用

@Value
注释。通常的情况是,
PropertyPlaceholderConfigurer
从的属性文件中加载值,然后
@Value("${property.key}")

您还可以将值定义为bean,这是比较古老的:

<bean id="foo"  factory-method="valueOf">    <constructor-arg value="20" /></bean>

然后

@Autowired@Qualifier("foo")private int foo;


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5623314.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存