美文网首页
spring-ioc

spring-ioc

作者: 奋斗的磊哥 | 来源:发表于2017-10-16 20:51 被阅读0次

    四大概念

    1、dip:依赖反转,依赖于抽象,不依赖于具体(面向接口编程)
    2、ioc:控制反转,new对象的权利交由外界实现
    3、di:依赖注入,对象的不在被依赖内部创建,而是由外界注入
    4、ioc容器:实现了ioc设计原则的框架

    spring简介

    作用:

    IOC容器,控制反转,将创建对象的权利交给容器去做

    好处:

    1、不用new对象,降低了类与类之间的耦合度
    2、面向接口编程
    3、整合其他的框架

    功能:

    IOC+AOP+DATA+WEB

    spring的原理

    将bean的类名以及类与类的关系配置在xml文件中,通过反射的方式创建对象,并且组装对象。

    快速入门

    1、导包

    core.jar、context.jar、expression.jar、bean.jar

    2、引入schema文档(类似dtd文档)约束xml的文档

    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.springframework.org/schema/beans 
                            http://www.springframework.org/schema/beans/spring-beans.xsd">
    </beans>
    

    3、通过xml配置bean

    <!-- 1、配置bean -->
        <bean class="com.hemi.bean.CandidateA" id="canA" />
        <bean class="com.hemi.bean.CandidateB" id="canB" />
        <bean class="com.hemi.bean.Personnel" id="personnel">
            <!-- 通过set方法将候选人canA注入到人事部中 -->
            <property name="candidata" ref="candidateA"></property>
        </bean>
    

    4、创建测试类

           //1、获取xml文件,并且创建出ApplicationContext
            ApplicationContext context=new ClassPathXmlApplicationContext("bean.xml");
            //2、获取人事部
            Personnel personnel=(Personnel)context.getBean("personnel");
            personnel.interview();
    

    xml配置详解

    bean的生命周期

    id:对象的名字
    destory-method:ioc容器摧毁时创建
    init-method:创建对象时执行的方法
    depends-on:创建对象之前应该创建好的对象
    lazy-init:延迟创建对象,容器初始化时不参加对象,用的时候才创建
    scope:设置作用域:singleton(单例)、prototype(多例)、request、sesssion、global session(后面两个基本不用)
    factory-method:工厂方法
    factory-bean:工厂对象
    abstract:标记为抽象类,不会创建对象
    其中scope、init-method、destory-method是bean的生命周期

    属性注入

    1、构造函数方式注入

    constructor-arg 构造函数参数
    type 使用构造函数参数类型
    name 使用构造函数参数名
    index 使用位置 0代表构造函数的第一个位置,1代表第二个位置,依次类推
    例如:

        <bean class="com.hemi.bean.Personnel" id="personnel">
            <constructor-arg index="0" ref="canB" />
            <constructor-arg index="1" ref="canA" />
        </bean>
    
    2、set方式注入

    property 代表属性名称
    value 属性值
    ref 对象的引用

        <bean class="com.hemi.bean.Personnel" id="personnel">
            <property name="name" value="lili"></property>
            <property name="programme" ref="canA"></property>
        </bean>
    
    3、p名称空间

    在文档定义中添加xmlns:p="http://www.springframework.org/schema/p"

    <bean class="com.hemi.bean.Personnel" id="personnel" p:name="lisi"></bean>
    

    注入复杂数据类型

    <bean id="complexBean" class="com.spring.bean.ComplexBean">
            <property name="username" value="非凡"></property>
            <property name="arr">
                <array>
                    <ref bean="paper"/>
                    <ref bean="paper"/>
                </array>
            </property>
            <property name="list">
                <list>
                    <value>a</value>
                    <value>b</value>
                </list>
            </property>
            <property name="set">
                <set>
                    <value>1</value>
                    <value>2</value>
                </set>
            </property>
            <property name="map">
                <map>
                    <!-- <entry>
                        <key>
                            <value>a</value>
                        </key>
                        <value>abc</value>
                    </entry>
                    <entry>
                        <key>
                            <value>b</value>
                        </key>
                        <value>bcd</value>
                    </entry> -->
                    <entry key="a" value="abc"></entry>
                    <entry key="b" value="bcd"></entry>
                </map>
            </property>
            <property name="prop">
                <props>
                    <prop key="driver">com.mysql.jdbc.Driver</prop>
                    <prop key="username">root</prop>
                </props>
            </property>
        </bean>
    

    注解方式详解

    注解的使用

    1、导包:context.jar、aop.jar

    2、添加xsd约束,context与aop

    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/aop 
            http://www.springframework.org/schema/aop/spring-aop.xsd"> 
    

    3、开启注解

    <!--作用:1、开启注解  2、扫描指定的包  -->
    <context:component-scan base-package="com.spring.bean"></context:component-scan>
    

    注解创建对象

    1、创建对象的注解

    @Component
    @Service
    @Repository
    @Controller
    而外的注解:@Scope("prototype"),指定为多例的

    2、用法:
    //创建对象的时候可以使用参数,设置对象的引用变量
    @Component("blackBox")
    public class BlackBox{
    }
    
    //如果没有写,那么默认使用小驼峰命名
    @Service
    public class Paper{
    }
    
    3、注意:

    四者用法一致,dao层一般使用@Repository,service一般使用@Service,web层一般使用@Controller(在springMVC中,web层只能使用@Controller)

    注解注入对象

    1、注入对象的注解

    @Resource
    @Autowired
    @Qualifier

    2、用法:

        //name:按照名称来查找
        @Resource(name="blackBox")
        private IBox box;
    
        //type:按照类型来查找
        @Resource(type=A4Paper.class)
        private IPaper paper;
    
        //如果没有写,那么name就是参数的变量名 box,所以找不到,然后按照type来查找,IBox类型,所以可以找得到
        //如果没有写,而内存中有多个相同类型的对象,那么就报错
        @Resource
        private IBox box1;
    
        //@Autowired不能写任何参数
        //按照类型来查找,如果内存中有多个相同类型的对象,那么报错
        //解决问题:使用@Qualifier来指定注入哪个名称的对象
        @Autowired
        @Qualifier("blackBox")
        private IBox box;
    
        @Autowired
        private IPaper paper;
    

    注意:推荐使用@Resource,实际开发用哪个注解,请根据实际需求选择

    相关文章

      网友评论

          本文标题:spring-ioc

          本文链接:https://www.haomeiwen.com/subject/fipluxtx.html