为了账号安全,请及时绑定邮箱和手机立即绑定

Spring框架小白的蜕变

难度初级
时长 3小时50分
学习人数
综合评分9.77
78人评价 查看评价
9.7 内容实用
9.8 简洁易懂
9.8 逻辑清晰
  • 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
提交
取消
课程须知
需要具备Java语法基础,了解Java Web基础知识。
老师告诉你能学到什么?
1、什么是IoC 2、Spring Bean的管理 3、什么是懒加载

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!