-
Bean作用域 课程内容
Singleton作用域
prototype作用域
Web环境作用域
request作用域
session作用域
application作用域
websocket作用域
自定义作用域
SimpleThreadScope作用域
查看全部 -
代码回顾:
注入内部Bean
查看全部 -
代码回顾:
注入null值
查看全部 -
代码回顾:
集合类型Bean注入,Map和Propertyes
查看全部 -
代码回顾:
集合类型Bean注入,List和Set
查看全部 -
代码回顾:
通过Set方法注入Bean,包括p标识
查看全部 -
代码回顾:
通过构造方法注入Bean,用c标识
查看全部 -
代码回顾:
通过构造方法注入Bean
查看全部 -
注入时创建内部Bean:
即不另外设立<bean></bean>创建
<bean class="com.imooc.spring.ioc.class006.AnotherBean" id="anotherBean"/>
而是在设值的时候加入<bean />创建
<property name="anotherBean1"> <bean class="com.imooc.spring.ioc.class006.AnotherBean"/> </property>
查看全部 -
null值注入:
<property name="anotherBean2"> <null/> </property>
查看全部 -
集合类Bean的型注入(Properties):
在原有的<bean></bean>中加入
<property name="properties"> <props> <prop key="aaaaa">bbbbb</prop> </props> </property>
查看全部 -
集合类Bean的型注入(Map):
在原有的<bean></bean>中加入
<property name="stringMap"> <map> <entry key="ccccc" value="ddddd"/> <entry key="eeeee" value="fffff"/> </map> </property> <property name="AnotherBeanMap"> <map> <entry key-ref="anotherBean" value-ref="anotherBean"/> </map> </property>
注意:当输入是特殊值时,需要在标签加上“-ref”
查看全部 -
集合类Bean的型注入(Set):
在原有的<bean></bean>中加入
<property name="stringSet"> <set> <value>aaaaa</value> <value>bbbbb</value> </set> </property> <property name="AnotherBeanSet"> <set> <ref bean="anotherBean"/> <ref bean="anotherBean"/> </set> </property> <property name="AnotherBeanList"> <list> <ref bean="anotherBean"/> <ref bean="anotherBean"/> </list> </property>
查看全部 -
集合类Bean的型注入:
在类中创建需要用到的集合。
查看全部 -
集合类Bean的型注入(List):
在原有的<bean></bean>中加入
<property name="stringList"> <list> <value>aaaaa</value> <value>bbbbb</value> </list> </property> <property name="AnotherBeanList"> <list> <ref bean="anotherBean"/> <ref bean="anotherBean"/> </list> </property>
查看全部
举报
0/150
提交
取消