spring IOC之xml

1.IOC

控制反转-Inversion Of Control
IOC意味着将你设计好的对象交给容器控制,而不是传统的在你的对象内部直接控制。

①IOC控制什么?
IOC容器控制对象。传统Java SE程序设计,直接在对象内部通过new进行创建对象,是程序主动去创建依赖对象;而IOC是有专门一个容器来创建这些对象,即由IOC容器来控制对象的创建。

②什么是反转?
传统应用程序是由我们自己在对象中主动控制去直接获取依赖对象,也就是正转;而反转则是由容器来帮忙创建及注入依赖对象;IOC容器帮我们查找及注入依赖对象,对象只是被动的接受依赖对象,所以是反转。依赖对象的获取被反转了。

IOC反转

工厂为我们查找或者创建对象。是被动的。这种被动接收的方式获取对象的思想就是控制反转。它的作用只有一个:削减计算机程序的耦合

2.IOC开发环境搭建

  • 1.用IDEA新建一个项目
  • 2.导入需要的jar包
需要的jar包

导包
  • 3.在src根目录下创建一个bean.xml的文件

  • 4.导入约束
    spring-framework-4.2.4.RELEASE\docs\spring-framework-reference\html\xsd-configuration.html用浏览器打开这个文件

约束
  • 5.配置bean
<?xml version="1.0" encoding="UTF-8" ?>
<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">

    <!-- 配置资源:把对象的创建交给Spring管理 -->
    <bean id="customerService" class="com.edu.services.Impl.CustomerServiceImpl"></bean>
    <bean id="customerDao" class="com.edu.dao.Impl.ICustomerDaoImpl"></bean>
</beans>
  • 测试配置是否成功
    写一个ui界面client.java
package com.edu.ui;

import com.edu.services.ICustomerService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Client {
    public static void main(String[] args){
        //1.获取容器
        /*
         * ClassPathXmlApplicationContext:只能加载类路径下的配置文件
         * FileSystemXmlApplicationContext: 可以加磁盘任意位置的配置文件
          * */
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        //2.根据bean的id获取对象
        ICustomerService cs = (ICustomerService) ac.getBean("customerService");
        System.out.println(cs);
    }
}
运行结果

上述测试的所有类

目录结构

CustomerServiceImpl.java

package com.edu.services.Impl;

import com.edu.services.ICustomerService;

public class CustomerServiceImpl implements ICustomerService {

    @Override
    public void saveCustomer() {
        System.out.println("业务调用持久层");
    }
}

ICustomerService.java

package com.edu.services;

public interface ICustomerService {
    /**
     * 保存客户
     */
    void saveCustomer();
}

3.bean标签

作用:
用于配置对象让spring来创建的。
属性:

  • id
    给对象在容器中提供一个唯一标识。用于获取对象。
  • class
    指定类的全限定类名。用于反射创建对象。默认情况下调用无参构造函数。
  • scope
    指定对象的作用范围。
    • singleton
      默认值,单例的.
    • prototype
      多例的.
    • request
      作用范围是一次请求,和当前请求的转发。
      WEB项目中,Spring创建一个Bean的对象,将对象存入到request域中.
    • session
      作用范围是一次会话
      WEB项目中,Spring创建一个Bean的对象,将对象存入到session域中.
    • globalSession
      作用范围是一次全局会话
  • init-method
    指定类中的初始化方法名称。
  • destroy-method
    指定类中销毁方法名称。

bean的两种创建规则

Spring中工厂的类结构图

蓝颜色的是接口,深绿是实现类,浅绿是抽象类。

  • BeanFactory
    提供的是一种延迟加载思想来创建bean对象。bean对象什么时候用什么时候创建。

  • ApplicationContext
    提供的是一种立即加载思想来创建bean对象。只要一解析完配置文件,就马上创建bean对象。

bean的三种实例化方式

  • 调用默认无参构造函数创建
    默认情况下,如果类中没有默认无参构造函数,则会创建失败,会报异常。
没有无参构造报异常
  • 使用静态工厂中的方法创建对象
    需要使用bean标签的factory-method属性,指定静态工厂中创建对象的方法。

创建一个StaticFactory.java

package com.edu.factory;

import com.edu.services.ICustomerService;
import com.edu.services.Impl.CustomerServiceImpl;

public class StaticFactory {
    public static ICustomerService getCustomerServices(){
        return new CustomerServiceImpl();
    }
}

配置bean.xml

<?xml version="1.0" encoding="UTF-8" ?>
<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">

    <!-- 配置资源:把对象的创建交给Spring管理 -->
    <bean id="customerService" class="com.edu.services.Impl.CustomerServiceImpl"></bean>

    <!-- 配置使用静态工厂创建bean对象 -->
    <bean id="staticCustomerServices" class="com.edu.factory.StaticFactory" factory-method="getCustomerServices"></bean>

</beans>
配置使用静态工厂创建bean对象

client.java测试

package com.edu.ui;

import com.edu.services.ICustomerService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Client {
    public static void main(String[] args){
        //1.获取容器
        /*
         * ClassPathXmlApplicationContext:只能加载类路径下的配置文件
         * FileSystemXmlApplicationContext: 可以加磁盘任意位置的配置文件
          * */
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        //2.根据bean的id获取对象
//        ICustomerService cs = (ICustomerService) ac.getBean("customerService");
        ICustomerService cs = (ICustomerService) ac.getBean("staticCustomerServices");

        cs.saveCustomer();
    }
}
运行结果
  • 使用实例工厂中的方法创建

创建一个InstanceFactory.java

package com.edu.factory;

import com.edu.services.ICustomerService;
import com.edu.services.Impl.CustomerServiceImpl;

public class InstanceFactory {
    public ICustomerService getCustomerServices(){
        return new CustomerServiceImpl();
    }
}

配置bean.xml

<?xml version="1.0" encoding="UTF-8" ?>
<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">

    <!-- 配置资源:把对象的创建交给Spring管理 -->
    <bean id="customerService" class="com.edu.services.Impl.CustomerServiceImpl"></bean>

    <!-- 配置使用静态工厂创建bean对象 -->
    <bean id="staticCustomerServices" class="com.edu.factory.StaticFactory" factory-method="getCustomerServices"></bean>

    <!-- 配置使用实例工厂创建bean对象 -->
    <bean id="instanceFactory" class="com.edu.factory.InstanceFactory"></bean>
    <bean id="instanceCustomerServices" factory-bean="instanceFactory" factory-method="getCustomerServices"></bean>


</beans>
配置使用实例工厂创建bean对象

client.java测试

package com.edu.ui;

import com.edu.services.ICustomerService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Client {
    public static void main(String[] args){
        //1.获取容器
        /*
         * ClassPathXmlApplicationContext:只能加载类路径下的配置文件
         * FileSystemXmlApplicationContext: 可以加磁盘任意位置的配置文件
          * */
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        //2.根据bean的id获取对象
//        ICustomerService cs = (ICustomerService) ac.getBean("customerService");
//        ICustomerService cs = (ICustomerService) ac.getBean("staticCustomerServices");
        ICustomerService cs = (ICustomerService) ac.getBean("instanceCustomerServices");

        cs.saveCustomer();
    }
}
运行结果

其中第一种方法最常用

bean的作用范围
可以通过配置的方式来调整作用范围
通过配置bean标签的scope属性

默认单例

修改bean.xml

修改scope
修改为多例

各创建一次,所以不相等

bean的生命周期

  • 单例对象
    scope="singleton"
    • 出生:容器创建,对象就出生了
    • 活着:只要容器在,对象就一直存在
    • 死亡:容器销毁,对象消亡
  • 多例
    scope="prototype"
    • 出生:每次使用时,创建对象
    • 活着:只要对象在使用,就一直活着
    • 死亡:当对象长时间不用时,被java的垃圾回收器回收了。

4.Spring的依赖注入

依赖注入是spring框架核心IOC的具体实现方式。简单的说,就是坐等框架把对象传入,而不用我们自己去获取。

Spring的依赖注入的三种方式

  • 使用构造函数注入
    使用类中的构造函数,给成员变量赋值。赋值的操作是通过配置的方式,让spring框架来注入。

CustomerServiceImpl.java

package com.edu.services.Impl;

import com.edu.services.ICustomerService;

import java.util.Date;

public class CustomerServiceImpl implements ICustomerService {

    private String a;
    private Integer b;
    private Date c;

    public CustomerServiceImpl(String a, Integer b, Date c) {
        this.a = a;
        this.b = b;
        this.c = c;
    }

    @Override
    public void saveCustomer() {
        System.out.println("业务调用持久层"+a+","+b+","+c);
    }
}

配置bean.xml

<?xml version="1.0" encoding="UTF-8" ?>
<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">

    <!-- 使用构造函数的方式,给service中的属性传值
    要求:
        类中需要提供一个对应参数列表的构造函数。
    涉及的标签:
        constructor-arg
            属性:
                index:指定参数在构造函数参数列表的索引位置
                type:指定参数在构造函数中的数据类型
                name:指定参数在构造函数中的名称                  用这个找给谁赋值
                
                =======上面三个都是找给谁赋值,下面两个指的是赋什么值的==============
                
                value:它能赋的值是基本数据类型和String类型
                ref:它能赋的值是其他bean类型,也就是说,必须得是在配置文件中配置过的bean
     -->

    <bean id="customerService" class="com.edu.services.Impl.CustomerServiceImpl">
        <constructor-arg name="a" value="com.edu.services"></constructor-arg>
        <constructor-arg name="b" value="3306"></constructor-arg>
        <constructor-arg name="c" ref="now"></constructor-arg>
    </bean>
    <bean id="now" class="java.util.Date"></bean>
</beans>

client.java界面运行

package com.edu.ui;

import com.edu.services.ICustomerService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Client {
    public static void main(String[] args){

        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        ICustomerService cs = (ICustomerService) ac.getBean("customerService");
        cs.saveCustomer();
    }
}
注入结果
  • 使用set方法注入
    CustomerServiceImpl.java
package com.edu.services.Impl;

import com.edu.services.ICustomerService;

import java.util.Date;

public class CustomerServiceImpl implements ICustomerService {

    private String a;
    private Integer b;
    private Date c;

    public void setA(String a) {
        this.a = a;
    }

    public void setB(Integer b) {
        this.b = b;
    }

    public void setC(Date c) {
        this.c = c;
    }

    @Override
    public void saveCustomer() {
        System.out.println("业务调用持久层"+a+","+b+","+c);
    }
}

配置bean.xml

<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<!-- 通过配置文件给bean中的属性传值:使用set方法的方式
    涉及的标签:
        property
        属性:
            name:找的是类中set方法后面的部分
            ref:给属性赋值是其他bean类型的
            value:给属性赋值是基本数据类型和string类型的
    实际开发中,此种方式用的较多。
-->

    <bean id="customerService" class="com.edu.services.Impl.CustomerServiceImpl">
        <property name="a" value="com.edu.services"></property>
        <property name="b" value="3307"></property>
        <property name="c" ref="now"></property>
    </bean>
    <bean id="now" class="java.util.Date"></bean>

</beans>
运行结果
  • 使用注解注入
    下一篇文章说明

注入的三种数据类型

  • 基本类型和String类型
  • 其他bean类型(必须是在spring的配置文件中出现过的bean)
  • 复杂类型(集合类型)

CustomerServiceImpl.java

package com.edu.services.Impl;

import com.edu.services.ICustomerService;

import java.util.*;


public class CustomerServiceImpl implements ICustomerService {

    private String[] myStrs;
    private List<String> myList;
    private Set<String> mySet;
    private Map<String,String> myMap;
    private Properties myProps;

    public void setMyStrs(String[] myStrs) {
        this.myStrs = myStrs;
    }

    public void setMyList(List<String> myList) {
        this.myList = myList;
    }

    public void setMySet(Set<String> mySet) {
        this.mySet = mySet;
    }

    public void setMyMap(Map<String, String> myMap) {
        this.myMap = myMap;
    }

    public void setMyProps(Properties myProps) {
        this.myProps = myProps;
    }

    @Override
    public void saveCustomer() {
        System.out.println(Arrays.toString(myStrs));
        System.out.println(myList);
        System.out.println(mySet);
        System.out.println(myMap);
        System.out.println(myProps);
    }
}

bean.xml

<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">

    <!-- 复杂类型
        结构相同,标签可以互换
    -->
    <bean id="customerService" class="com.edu.services.Impl.CustomerServiceImpl">
        <property name="myStrs">
            <array>
                <value>AAA</value>
                <value>BBB</value>
                <value>CCC</value>
            </array>
        </property>

        <property name="myList">
            <list>
                <value>AAA</value>
                <value>BBB</value>
                <value>CCC</value>
            </list>
        </property>

        <property name="mySet">
            <set>
                <value>AAA</value>
                <value>BBB</value>
                <value>CCC</value>
            </set>
        </property>

        <property name="myMap">
            <map>
                <entry key="testA" value="AAA"></entry>
                <entry key="testB" value="BBB"></entry>
                <entry key="testC" value="CCC"></entry>
            </map>
        </property>

        <property name="myProps">
            <props>
                <prop key="testD">DDD</prop>
                <prop key="testE">EEE</prop>
            </props>
        </property>
    </bean>

</beans>
运行结果
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,258评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,335评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,225评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,126评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,140评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,098评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,018评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,857评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,298评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,518评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,400评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,993评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,638评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,661评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352