IOC容器-Bean管理XML方式

IOC 操作 Bean 管理(概念)

1、什么是 Bean 管理
(0)Bean 管理指的是两个操作
(1)Spring 创建对象
(2)Spirng 注入属性

2、Bean 管理操作有两种方式
(1)基于 xml 配置文件方式实现
(2)基于注解方式实现

IOC 操作 Bean 管理(基于 xml 方式)

1、基于 xml 方式创建对象

    <!-- 1 配置User对象创建 -->
    <bean id="user" class="top.qaqaq.spring5.User"></bean>

(1)在 spring 配置文件中,使用 bean 标签,标签里面添加对应属性,就可以实现对象创建

(2)在 bean 标签有很多属性,介绍常用的属性

  • id 属性:唯一标识
  • class 属性:类全路径(包类路径)

(3)创建对象时候,默认也是执行无参数构造方法完成对象创建

2、基于 xml 方式注入属性

(1)DI:依赖注入,就是注入属性

3、第一种注入方式:使用 set 方法进行注入

(1)创建类,定义属性和对应的 set 方法

package top.qaqaq.spring5;

/**
 * @author RichieZhang
 * @create 2022-12-21 14:55
 */

/**
 * 演示使用set方法进行注入属性
 */
public class Book {

    // 创建属性
    private String bname;
    private String bauttor;

    //创建属性对应的set方法
    public void setBname(String bname) {
        this.bname = bname;
    }

    public void setBauttor(String bauttor) {
        this.bauttor = bauttor;
    }

    public void testDemo(){
        System.out.println(bname + "::" + bauttor);
    }
}

(2)在 spring 配置文件配置对象创建,配置属性注入

  <!-- 2 set方法注入属性 -->
    <bean id="book" class="top.qaqaq.spring5.Book">

        <!--使用property完成属性注入
            name:类里面的属性名称
            value:向属性注入的值
        -->
        <property name="bname" value="易筋经"></property>
        <property name="bauttor" value="达摩老祖"></property>
    </bean>

4、第二种注入方式:使用有参数构造进行注入

(1)创建类,定义属性,创建属性对应有参数构造方法

package top.qaqaq.spring5;

/**
 * @author RichieZhang
 * @create 2022-12-21 15:15
 */

/**
 * 使用有参数构造注入
 */
public class Orders {

    //属性
    private String oname;
    private String address;

    // 有参数构造
    public Orders(String oname, String address) {
        this.oname = oname;
        this.address = address;
    }

    public void ordersTest(){
        System.out.println(oname + "::" + address);
    }
}

(2)在 spring 配置文件中进行配置

    <!-- 3 有参数构造注入属性 -->
    <bean id="orders" class="top.qaqaq.spring5.Orders">
        <constructor-arg name="oname" value="电脑"></constructor-arg>
        <constructor-arg name="address" value="China"></constructor-arg>
    </bean>

5、p 名称空间注入(了解)

(1)使用 p 名称空间注入,可以简化基于 xml 配置方式

第一步 添加 p 名称空间在配置文件中

<beans
    xmlns:p="http://www.springframework.org/schema/p"
>

第二步 进行属性注入,在 bean 标签里面进行操作

    <!-- 4 p名称空间注入 了解-->
    <bean id="book" class="top.qaqaq.spring5.Book" p:bname="九阳神功" p:bauttor="无名氏">
    </bean>

IOC 操作 Bean 管理(xml 注入其他类型属性)

1、字面量

(1)null 值

        <!-- null值 -->
        <property name="address">
            <null/>
        </property>

(2)属性值包含特殊符号

        <!-- 属性值包含特殊符号
            1 把<>进行转义 &lt; &gt;
            2 把带特殊符号内容写道CDATA
        -->
        <property name="address">
            <value><![CDATA[<<南京>>]]></value>
        </property>

2、注入属性-外部 bean

(1)创建两个类 service 类和 dao 类
(2)在 service 调用 dao 里面的方法
(3)在 spring 配置文件中进行配置

package top.qaqaq.spring5.service;

import top.qaqaq.spring5.dao.UserDao;

/**
 * @author RichieZhang
 * @create 2022-12-21 16:07
 */
public class UserService {

    // 创建UserDao类型属性,生成set方法
    private UserDao userDao;

    public void setUserDao(UserDao userDao) {
        this.userDao = userDao;
    }

    public void add() {
        System.out.println("service add..............");
        userDao.update();

        // 原始方式: 创建UserDao对象
        /*  UserDao userDao = new UserDaoImpl();
        userDao.update();   */
    }
}
package top.qaqaq.spring5.dao;

/**
 * @author RichieZhang
 * @create 2022-12-21 16:08
 */
public interface UserDao {

    public void update();
}
package top.qaqaq.spring5.dao;

/**
 * @author RichieZhang
 * @create 2022-12-21 16:08
 */
public class UserDaoImpl implements UserDao{

    @Override
    public void update() {
        System.out.println("dao update...........");
    }
}
<?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">

    <!-- 1 service和dao对象创建 -->
    <bean id="userService" class="top.qaqaq.spring5.service.UserService">
        <!-- 注入userDao对象
            name属性值:类里面属性名称
            ref属性:创建userDao对象bean标签id值
        -->
        <property name="userDao" ref="userDaoImpl"></property>
    </bean>

    <bean id="userDaoImpl" class="top.qaqaq.spring5.dao.UserDaoImpl"></bean>
</beans>

3、注入属性-内部 bean

(1)一对多关系:部门和员工
一个部门有多个员工,一个员工属于一个部门
部门是一,员工是多
(2)在实体类之间表示一对多关系,员工表示所属部门,使用对象类型属性进行表示

package top.qaqaq.spring5.bean;

/**
 * @author RichieZhang
 * @create 2022-12-21 17:09
 */

// 部门类
public class Dept {

    private String dname;

    public void setDname(String dname) {
        this.dname = dname;
    }

    @Override
    public String toString() {
        return "Dept{" +
                "dname='" + dname + '\'' +
                '}';
    }
}
package top.qaqaq.spring5.bean;

/**
 * @author RichieZhang
 * @create 2022-12-21 17:10
 */

// 员工类
public class Emp {

    private String ename;
    private String gender;
    // 员工属于某一个部门,使用对象形式表示
    private Dept dept;

    public void setEname(String ename) {
        this.ename = ename;
    }

    public void setGender(String gender) {
        this.gender = gender;
    }

    public void setDept(Dept dept) {
        this.dept = dept;
    }

    public void add () {
        System.out.println(ename + "::" + gender + "::" + dept);
    }
}

(3)在 spring 配置文件中进行配置

<?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">

    <!-- 内部bean -->
    <bean id="emp" class="top.qaqaq.spring5.bean.Emp">
        <!-- 设置两个普通属性 -->
        <property name="ename" value="lucy"></property>
        <property name="gender" value="女"></property>
        <!-- 设置对象类型属性 -->
        <property name="dept">
            <bean id="dept" class="top.qaqaq.spring5.bean.Dept">
                <property name="dname" value="安保部"></property>
            </bean>
        </property>
    </bean>
</beans>

4、注入属性-级联赋值

(1)第一种写法

<?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">

    <!-- 级联赋值 -->
    <bean id="emp" class="top.qaqaq.spring5.bean.Emp">
        <!-- 设置两个普通属性 -->
        <property name="ename" value="lucy"></property>
        <property name="gender" value="女"></property>
        <!-- 级联赋值 -->
        <property name="dept" ref="dept"></property>
    </bean>
    <bean id="dept" class="top.qaqaq.spring5.bean.Dept">
        <property name="dname" value="财务部"></property>
    </bean>
</beans>

(2)第二种写法

<?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">

    <!-- 级联赋值 -->
    <bean id="emp" class="top.qaqaq.spring5.bean.Emp">
        <!-- 设置两个普通属性 -->
        <property name="ename" value="lucy"></property>
        <property name="gender" value="女"></property>
        <!-- 级联赋值 -->
        <property name="dept" ref="dept"></property>
        <property name="dept.dname" value="技术部"></property>
    </bean>
    <bean id="dept" class="top.qaqaq.spring5.bean.Dept">
        <property name="dname" value="财务部"></property>
    </bean>
</beans>

OC 操作 Bean 管理(xml 注入集合属性)

1、注入数组类型属性
2、注入 List 集合类型属性
3、注入 Map 集合类型属性

(1)创建类,定义数组、list、map、set 类型属性,生成对应 set 方法

package top.qaqaq.spring5.collectiontype;

import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Set;

/**
 * @author RichieZhang
 * @create 2022-12-21 19:07
 */
public class Stu {
    // 1. 数组类型属性
    private String[] courses;

    // 2. list集合类型属性
    private List<String> list;

    // 3. map集合类型属性
    private Map<String,String> maps;

    // 4. set 集合类型属性
    private Set<String> sets;

    public void setCourses(String[] courses) {
        this.courses = courses;
    }

    public void setList(List<String> list) {
        this.list = list;
    }

    public void setMaps(Map<String, String> maps) {
        this.maps = maps;
    }

    public void setSets(Set<String> sets) {
        this.sets = sets;
    }

    public void test() {
        System.out.println(Arrays.toString(courses));
        System.out.println(list);
        System.out.println(maps);
        System.out.println(sets);
    }
}

(2)在 spring 配置文件进行配置

<?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">

    <!-- 1 集合类型属性注入 -->
    <bean id="stu" class="top.qaqaq.spring5.collectiontype.Stu">
        <!-- 数组类型属性注入 -->
        <property name="courses">
            <array>
                <value>java课程</value>
                <value>数据库课程</value>
            </array>
        </property>
        <!-- list类型属性注入 -->
        <property name="list">
            <list>
                <value>张三</value>
                <value>小三</value>
            </list>
        </property>
        <!-- map类型属性注入 -->
        <property name="maps">
            <map>
                <entry key="JAVA" value="java"></entry>
                <entry key="PHP" value="php"></entry>
            </map>
        </property>
        <!-- set类型属性注入 -->
        <property name="sets">
            <set>
                <value>MySQL</value>
                <value>Redis</value>
            </set>
        </property>
    </bean>
</beans>

4、在集合里面设置对象类型值

    <!-- 创建多个course对象 -->
    <bean id="course1" class="top.qaqaq.spring5.collectiontype.Course">
        <property name="cname" value="Spring5框架"></property>
    </bean>
    <bean id="course2" class="top.qaqaq.spring5.collectiontype.Course">
        <property name="cname" value="MyBatis框架"></property>
    </bean>

        <!-- 注入list集合类型,值是对象 -->
        <property name="courseList">
            <list>
                <ref bean="course1"></ref>
                <ref bean="course2"></ref>
            </list>
        </property>

5、把集合注入部分提取出来

(1)在 spring 配置文件中引入名称空间 util

<?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">

(2)使用 util 标签完成 list 集合注入提取

    <!-- 1 提取list集合类型属性注入 -->
    <util:list id="bookList">
        <value>易筋经</value>
        <value>九阴真经</value>
        <value>九阳神功</value>
    </util:list>

    <!-- 2 提取list集合类型属性注入使用 -->
    <bean id="book" class="top.qaqaq.spring5.collectiontype.Book">
        <property name="list" ref="bookList"></property>
    </bean>
package top.qaqaq.spring5.collectiontype;

import java.util.List;

/**
 * @author RichieZhang
 * @create 2022-12-21 19:49
 */
public class Book {

    private List<String> list;

    public void setList(List<String> list) {
        this.list = list;
    }

    public void test(){
        System.out.println(list);
    }
}

IOC 操作 Bean 管理(FactoryBean)

1、Spring 有两种类型 bean,一种普通 bean,另外一种工厂 bean(FactoryBean)

2、普通 bean:在配置文件中定义 bean 类型就是返回类型

3、工厂 bean:在配置文件定义 bean 类型可以和返回类型不一样
第一步 创建类,让这个类作为工厂 bean,实现接口 FactoryBean
第二步 实现接口里面的方法,在实现的方法中定义返回的 bean 类型

package top.qaqaq.spring5.factorybean;

import org.springframework.beans.factory.FactoryBean;
import top.qaqaq.spring5.collectiontype.Course;

/**
 * @author RichieZhang
 * @create 2022-12-21 20:32
 */
public class MyBean implements FactoryBean<Course> {

    // 定义返回bean
    @Override
    public Course getObject() throws Exception {
        Course course = new Course();
        course.setCname("abc");
        return course;
    }

    @Override
    public Class<?> getObjectType() {
        return null;
    }

    @Override
    public boolean isSingleton() {
        return FactoryBean.super.isSingleton();
    }
}
    <bean id="myBean" class="top.qaqaq.spring5.factorybean.MyBean">

    </bean>
    @Test
    public void test3(){
        ApplicationContext context = new ClassPathXmlApplicationContext("bean7.xml");
        Course course = context.getBean("myBean", Course.class);
        System.out.println(course);
    }

IOC 操作 Bean 管理(bean 作用域)

1、在 Spring 里面,设置创建 bean 实例是单实例还是多实例

2、在 Spring 里面,默认情况下,bean 是单实例对象

    @Test
    public void testCollection2(){
        ApplicationContext context = new ClassPathXmlApplicationContext("bean6.xml");
        Book book1 = context.getBean("book", Book.class);
        Book book2 = context.getBean("book", Book.class);
        //book.test();

        System.out.println(book1);
        System.out.println(book2);
    }

3、如何设置单实例还是多实例

(1)在 spring 配置文件 bean 标签里面有属性(scope)用于设置单实例还是多实例

(2)scope 属性值
第一个值 默认值,singleton,表示是单实例对象
第二个值 prototype,表示是多实例对象

    <!-- 2 提取list集合类型属性注入使用 -->
    <bean id="book" class="top.qaqaq.spring5.collectiontype.Book" scope="prototype">
        <property name="list" ref="bookList"></property>
    </bean>

(3)singleton 和 prototype 区别

第一 singleton 单实例,prototype 多实例
第二 设置 scope 值是 singleton 时候,加载 spring 配置文件时候就会创建单实例对象
设置 scope 值是 prototype 时候,不是在加载 spring 配置文件时候创建 对象,在调用
getBean 方法时候创建多实例对象

IOC 操作 Bean 管理(bean 生命周期)

1、生命周期

(1)从对象创建到对象销毁的过程

2、bean 生命周期

(1)通过构造器创建 bean 实例(无参数构造)
(2)为 bean 的属性设置值和对其他 bean 引用(调用 set 方法)
(3)调用 bean 的初始化的方法(需要进行配置初始化的方法)
(4)bean 可以使用了(对象获取到了)
(5)当容器关闭时候,调用 bean 的销毁的方法(需要进行配置销毁的方法)

3、演示 bean 生命周期

package top.qaqaq.spring5.bean;

/**
 * @author RichieZhang
 * @create 2022-12-21 21:18
 */
public class Orders {

    private String oname;

    // 无参数构造
    public Orders() {
        System.out.println("第一步 执行无参数构造创建bean实例");
    }

    public void setOname(String oname) {
        this.oname = oname;
        System.out.println("第二步 调用set方法设置属性值");
    }

    //创建执行的初始化的方法
    public void initMethod(){
        System.out.println("第三步 执行初始化的方法");
    }

    //创建执行的销毁的方法
    public void destroyMethod() {
        System.out.println("第五步 执行销毁的方法");
    }
}
    <bean id="orders" class="top.qaqaq.spring5.bean.Orders" init-method="initMethod" destroy-method="destroyMethod">
        <property name="oname" value="手机"></property>
    </bean>
    @Test
    public void testBean4(){
        //ApplicationContext context = new ClassPathXmlApplicationContext("bean8.xml");
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("bean8.xml");
        Orders orders = context.getBean("orders", Orders.class);
        System.out.println("第四步 获取创建bean实例对象");
        System.out.println(orders);

        //手动让bean实例销毁
        context.close();
    }

4、bean 的后置处理器,bean 生命周期有七步

(1)通过构造器创建 bean 实例(无参数构造)
(2)为 bean 的属性设置值和对其他 bean 引用(调用 set 方法)
(3)把 bean 实例传递 bean 后置处理器的方法 postProcessBeforeInitialization
(4)调用 bean 的初始化的方法(需要进行配置初始化的方法)
(5)把 bean 实例传递 bean 后置处理器的方法 postProcessAfterInitialization
(6)bean 可以使用了(对象获取到了)
(7)当容器关闭时候,调用 bean 的销毁的方法(需要进行配置销毁的方法)

5、演示添加后置处理器效果

(1)创建类,实现接口 BeanPostProcessor,创建后置处理器

package top.qaqaq.spring5.bean;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.lang.Nullable;

/**
 * @author RichieZhang
 * @create 2022-12-21 21:39
 */
public class MyBeanPost implements BeanPostProcessor {

    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
        System.out.println("在初始化之前执行的方法");
        return bean;
    }

    @Override
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        System.out.println("在初始化之后执行的方法");
        return bean;
    }
}
    <!-- 配置后置处理器 -->
    <bean id="myBeanPost" class="top.qaqaq.spring5.bean.MyBeanPost"></bean>

IOC 操作 Bean 管理(xml 自动装配)

1、什么是自动装配
(1)根据指定装配规则(属性名称或者属性类型),Spring 自动将匹配的属性值进行注入

2、演示自动装配过程
(1)根据属性名称自动注入

    <!--实现自动装配
        bean标签属性autowire,配置自动装配
        autowire属性常用两个值:
            byName根据属性名称注入,注入值bean的id值和类属性名称一样
            byType根据属性类型注入
    -->
    <bean id="emp" class="top.qaqaq.spring5.autowire.Emp" autowire="byName">
<!--        <property name="dept" ref="dept"></property>-->
    </bean>
    <bean id="dept" class="top.qaqaq.spring5.autowire.Dept"></bean>

(2)根据属性类型自动注入

    <!--实现自动装配
        bean标签属性autowire,配置自动装配
        autowire属性常用两个值:
            byName根据属性名称注入,注入值bean的id值和类属性名称一样
            byType根据属性类型注入
    -->
    <bean id="emp" class="top.qaqaq.spring5.autowire.Emp" autowire="byType">
<!--        <property name="dept" ref="dept"></property>-->
    </bean>
    <bean id="dept" class="top.qaqaq.spring5.autowire.Dept"></bean>

IOC 操作 Bean 管理(外部属性文件)

1、直接配置数据库信息

(1)配置德鲁伊连接池
(2)引入德鲁伊连接池依赖 jar 包

    <!-- 直接配置连接池 -->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/userDb"></property>
        <property name="username" value="root"></property>
        <property name="password" value="root"></property>
    </bean>

2、引入外部属性文件配置数据库连接池

(1)创建外部属性文件,properties 格式文件,写数据库信息

prop.driverClass=com.mysql.cj.jdbc.Driver
prop.url=jdbc:mysql://localhost:3306/userDb
prop.userName=root
prop.password=root

(2)把外部 properties 属性文件引入到 spring 配置文件中

引入 context 名称空间

<?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:context="http://www.springframework.org/schema/context"
       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">

在 spring 配置文件使用标签引入外部属性文件

    <!-- 引入外部属性文件 -->
    <context:property-placeholder location="classpath:jdbc.properties"/>

    <!-- 配置连接池 -->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${prop.driverClass}"></property>
        <property name="url" value="prop.url"></property>
        <property name="username" value="prop.userName"></property>
        <property name="password" value="prop.password"></property>
    </bean>
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇