IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring5 框架 ---- IOC容器(一) -> 正文阅读

[Java知识库]Spring5 框架 ---- IOC容器(一)

1. IOC的概念和原理

1. 什么是IOC

  1. 控制反转,把对象创建和对象之间的调用过程,交给Spring管理
  2. 使用IOC目的:为了耦合度降低
  3. 入门案例就是IOC实现

2. IOC底层原理

技术:xml + 工厂模式 + 反射

举个栗子:两个方法之间的调用

传统模式
在这里插入图片描述

工厂模式
在这里插入图片描述

IOC过程
在这里插入图片描述

2. IOC的BeanFactory接口

  1. IOC 思想基于 IOC 容器完成,IOC 容器底层就是对象工厂

  2. Spring 提供了 IOC 容器实现两种方式:(两个接口)

    1. BeanFactor:IOC 容器基本实现,是 Spring 内部的使用接口,一般不提供开发人员进行使用(加载配置文件的时候,不会创建对象,在获取对象(使用)才会创建对象)
    2. ApplicationContext:BeanFactory 接口的子接口,比 BeanFactory 提供了更多更强大的功能,一般由开发人员进行使用(加载配置文件时候,就会创建对象)
  3. ApplicationContext 接口有实现类
    在这里插入图片描述

3. IOC操作Bean管理(概念)

1. 什么是Bean管理

Bean 管理指的是两个操作:

  1. Spring 创建对象
  2. Spring 注入属性

2. Bean管理操作有两种方式

  1. 基于 xml 配置文件方式实现
  2. 基于注解方式实现

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

1. 基于xml方式创建对象

    <!--配置User对象创建-->
    <bean id="user" class="com.fickler.spring5.User"></bean>
  1. 在 spring 配置文件中,使用 bean 标签,标签里面添加对应属性,就可以实现对象创建

  2. 在 bean 标签有很多属性,介绍常用属性

    • id 属性:唯一标识(别名)
    • class 属性:创建对象所在位置的全路径
  3. 创建对象时候,默认也是执行无参数构造方法完成对象创建

2. 基于xml方式注入属性

DI:依赖注入,就是注入属性(要在创建对象的基础之上注入属性)

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

  1. 创建类,定义属性和对应的 set 方法
package com.fickler.spring5;

/**
 * @author dell
 * @version 1.0
 */
public class Book {

    private String name;
    private String author;

    public void setName(String name) {
        this.name = name;
    }

    public void setAuthor(String author) {
        this.author = author;
    }

    public void testDemo(){
        System.out.println(name + "::" + author);
    }
}

  1. 在 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">

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

    <!--set方法注入属性-->
    <bean id="book" class="com.fickler.spring5.Book">
        <!--使用property完成属性注入
            name:类里面属性名称
            value:向属性注入的值
            -->
        <property name="name" value="易筋经"></property>
        <property name="author" value="达摩老祖"></property>
    </bean>

</beans>
  1. 测试输出
package com.fickler.spring5.testdemo;

import com.fickler.spring5.Book;
import com.fickler.spring5.User;
import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author dell
 * @version 1.0
 */
public class TestSpring5 {

    @Test
    public void testAdd(){

        //1.加载配置spring配置文件
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean1.xml");

        //2.获取配置创建的对象
//        User user = applicationContext.getBean("user", User.class);
        Book book = applicationContext.getBean("book", Book.class);

        System.out.println(book);
        book.testDemo();

    }

}

在这里插入图片描述

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

  1. 创建类,定义属性,创建属性对应有参数构造方法
package com.fickler.spring5;

/**
 * @author dell
 * @version 1.0
 */
public class Orders {

    //属性
    private String name;
    private String  address;

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

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

  1. 在 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">

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

    <!--set方法注入属性-->
<!--    <bean id="book" class="com.fickler.spring5.Book">-->
<!--        &lt;!&ndash;使用property完成属性注入-->
<!--            name:类里面属性名称-->
<!--            value:向属性注入的值-->
<!--            &ndash;&gt;-->
<!--        <property name="name" value="易筋经"></property>-->
<!--        <property name="author" value="达摩老祖"></property>-->
<!--    </bean>-->

    <!--有参构造注入属性-->
    <bean id="orders" class="com.fickler.spring5.Orders">
        <constructor-arg name="name" value="电脑"></constructor-arg>
        <constructor-arg name="address" value="中国"></constructor-arg>
    </bean>

</beans>
  1. 测试输出
package com.fickler.spring5.testdemo;

import com.fickler.spring5.Book;
import com.fickler.spring5.Orders;
import com.fickler.spring5.User;
import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author dell
 * @version 1.0
 */
public class TestSpring5 {

    @Test
    public void testAdd(){

        //1.加载配置spring配置文件
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean1.xml");

        //2.获取配置创建的对象
//        User user = applicationContext.getBean("user", User.class);
//        Book book = applicationContext.getBean("book", Book.class);
        Orders orders = applicationContext.getBean("orders", Orders.class);

        System.out.println(orders);
        orders.ordersTest();

    }

}

在这里插入图片描述

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

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

  1. 添加 p 名称空间在配置文件中
<?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:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  1. 进行属性注入,在 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"
       xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

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

    <!--set方法注入属性-->
<!--    <bean id="book" class="com.fickler.spring5.Book">-->
<!--        &lt;!&ndash;使用property完成属性注入-->
<!--            name:类里面属性名称-->
<!--            value:向属性注入的值-->
<!--            &ndash;&gt;-->
<!--        <property name="name" value="易筋经"></property>-->
<!--        <property name="author" value="达摩老祖"></property>-->
<!--    </bean>-->

    <!--有参构造注入属性-->
<!--    <bean id="orders" class="com.fickler.spring5.Orders">-->
<!--        <constructor-arg name="name" value="电脑"></constructor-arg>-->
<!--        <constructor-arg name="address" value="中国"></constructor-arg>-->
<!--    </bean>-->

    <!--p名称空间-->
    <bean id="book" class="com.fickler.spring5.Book" p:name="九阳神功" p:author="无名氏"></bean>

</beans>
  1. 测试输出
package com.fickler.spring5.testdemo;

import com.fickler.spring5.Book;
import com.fickler.spring5.Orders;
import com.fickler.spring5.User;
import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author dell
 * @version 1.0
 */
public class TestSpring5 {

    @Test
    public void testAdd(){

        //1.加载配置spring配置文件
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean1.xml");

        //2.获取配置创建的对象
//        User user = applicationContext.getBean("user", User.class);
        Book book = applicationContext.getBean("book", Book.class);
//        Orders orders = applicationContext.getBean("orders", Orders.class);

        System.out.println(book);
        book.testDemo();

    }

}

在这里插入图片描述

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-09-24 20:42:44  更:2022-09-24 20:45:48 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 9:10:11-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码