Spring Bean的属性注入方式
时间:2020-11-13 08:29:41|栏目:JAVA代码|点击: 次
在spring中bean的属性注入有两种
构造器注入
<bean id="car" class="nwtxxb.di.Car"> <constructor-arg index="0" type="java.lang.String" value="保时捷"></constructor-arg> <constructor-arg index="1" type="double" value="2000000"></constructor-arg> </bean>
Setter方法注入
<bean id="car" class="nwtxxb.di.Car"> <property name="name" value="捷豹"/> <property name="price" value="500000"/> </bean>
集合属性的注入
在spring中对于集合属性,可以使用专门的标签来完成注入.
例如:list set map properties
等集合元素来完成集合属性注入.
List属性注入
如果属性是数组类型也可以使用list完成注入
Set属性注入
Map属性注入
Properties属性注入
Java.util.Properties是java.util.Map的实现类,它的key与value都是String类型.
<props> <prop key="company">nwtxxb</prop> <prop key="price">100000</prop> </props>
总结
阅读排行
- 1Java Swing组件BoxLayout布局用法示例
- 2java中-jar 与nohup的对比
- 3Java邮件发送程序(可以同时发给多个地址、可以带附件)
- 4Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type异常
- 5Java中自定义异常详解及实例代码
- 6深入理解Java中的克隆
- 7java读取excel文件的两种方法
- 8解析SpringSecurity+JWT认证流程实现
- 9spring boot里增加表单验证hibernate-validator并在freemarker模板里显示错误信息(推荐)
- 10深入解析java虚拟机