Spring5 框架概述

1、Spring 是轻量级的开源的 JavaEE 框架

2、Spring 可以解决企业应用开发的复杂性

3、Spring 有两个核心部分:IOC 和 Aop
(1)IOC:控制反转,把创建对象过程交给 Spring 进行管理
(2)Aop:面向切面,不修改源代码进行功能增强

4、Spring 特点
(1)方便解耦,简化开发
(2)Aop 编程支持
(3)方便程序测试
(4)方便和其他框架进行整合
(5)方便进行事务操作
(6)降低 API 开发难度

Spring5 入门案例

1、下载 Spring5

下载地址
https://repo.spring.io/release/org/springframework/spring/spring5中文手册_配置文件
2、打开 idea 工具,创建普通 Java 工程
spring5中文手册_配置文件_02
spring5中文手册_xml_03

3、导入 Spring5 相关 jar 包

spring5中文手册_java_04


spring5中文手册_spring_05


spring5中文手册_xml_06

4、创建普通类,在这个类创建普通方法

package com.acoffee.spring5;

/**
 * @author acoffee
 * @create 2021-03-11 21:32
 */
public class User {
    public void add(){
        System.out.println("add.....");
    }
}

5、创建 Spring 配置文件,在配置文件配置创建的对象
(1)Spring 配置文件使用 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">
        
    <!--配置User对象创建-->
    <bean id="user" class="com.acoffee.spring5.User"></bean>
</beans>

6、进行测试代码编写

public class TestSpring5 {
    @Test
    public void testAdd() {
        //1 加载spring配置文件
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean1.xml");

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

        System.out.println(user);//com.acoffee.spring5.User@60285225
        user.add();//add.....
    }

}

执行结果:

spring5中文手册_spring_07

IOC(概念和原理)

IOC 容器
(1)IOC 底层原理
(2)IOC 接口(BeanFactory)
(3)IOC 操作 Bean 管理(基于 xml)
(4)IOC 操作 Bean 管理(基于注解)

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

2、IOC 底层原理
(1)xml 解析、工厂模式、反射

3、画图讲解 IOC 底层原理

简单工程模式

spring5中文手册_配置文件_08


IOC过程

spring5中文手册_spring_09

IOC(BeanFactory 接口)

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

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

(1)BeanFactory:IOC 容器基本实现,是 Spring 内部的使用接口,不提供开发人员进行使用

  • 加载配置文件时候不会创建对象,在获取对象(使用)才去创建对象

(2)ApplicationContext:BeanFactory 接口的子接口,提供更多更强大的功能,一般由开发人
员进行使用

  • 加载配置文件时候就会把在配置文件对象进行创建

3、ApplicationContext 接口有实现类

spring5中文手册_spring5中文手册_10

IOC 操作 Bean 管理(概念)

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

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

IOC 操作 Bean 管理(基于 xml 方式)
1、基于 xml 方式创建对象

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

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

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

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

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

2、基于 xml 方式注入属性
(1)DI:依赖注入,就是注入属性

3、第一种注入方式:使用 set 方法进行注入
(1)创建类,定义属性和对应的 set 方法

/**
 * @author acoffee
 * @create 2021-03-12 19:24
 */
public class Book {
    //创建属性
    private String bname;
    private String bauthor;

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

    public void setBauthor(String bauthor){
        this.bauthor = bauthor;
    }

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

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

<!--2.set方法注入属性 -->
    <bean id="book" class="com.acoffee.spring5.Book">
        <!--
            使用property完成属性注入
            name:类里面属性名称
            value:向属性注入的值
        -->
        <property name="bname" value="安河桥"></property>
        <property name="bauthor" value="宋冬野"></property>
    </bean>

4、第二种注入方式:使用有参数构造进行注入
(1)创建类,定义属性,创建属性对应有参数构造方法

/**
 * @author acoffee
 * @create 2021-03-12 19:50
 */
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="com.acoffee.spring5.Orders">
        <constructor-arg name="oname" value="电脑"></constructor-arg>
        <constructor-arg name="address" value="China"></constructor-arg>
    </bean>

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

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

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

spring5中文手册_spring_11


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

<bean id="book" class="com.acoffee.spring5.Book" p:bname="九阳神功" p:bauthor="无名氏"></bean>

执行结果:

spring5中文手册_配置文件_12

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

1、字面量
(1)null 值

<property name="address">
	<null/>
</property>
<bean id="book" class="com.acoffee.spring5.Book" p:bname="九阳神功" p:bauthor="无名氏">
        <property name="address"><null/></property>
    </bean>
public class Book {
    //创建属性
    private String bname;
    private String bauthor;
    private String address;

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

    public void setBauthor(String bauthor){
        this.bauthor = bauthor;
    }

    public void setAddress(String address){
        this.address = address;
    }

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

执行结果:

spring5中文手册_java_13


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

<bean id="book" class="com.acoffee.spring5.Book" p:bname="九阳神功" p:bauthor="无名氏">
        <!--属性值包含特殊符号
        1 把<>进行转义>(>);<(<);
        2 把带特殊符号内容写到CDATA
        -->
        <property name="address">
            <value><![CDATA[<<南京>>]]></value>
        </property>
    </bean>

执行结果:

spring5中文手册_xml_14


2、注入属性-外部 bean

(1)创建两个类 service 类和 dao 类

(2)在 service 调用 dao 里面的方法

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

service类:

/**
 * @author acoffee
 * @create 2021-03-12 21:04
 */
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();
    }
}

bean2.xml配置文件

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

UserDao接口:

/**
 * @author acoffee
 * @create 2021-03-12 21:05
 */
public interface UserDao {
    public void update();
}

UserDaoImpl实现类:

/**
 * @author acoffee
 * @create 2021-03-12 21:05
 */
public class UserDaoImpl implements UserDao {

    @Override
    public void update() {
        System.out.println("dao update.....");
    }
}

测试类:

/**
 * @author acoffee
 * @create 2021-03-12 21:20
 */
public class TestBean {
    @Test
    public void testAdd(){
        //1 加载spring配置文件
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean2.xml");

        //2 获取配置创建的对象
        UserService userService = context.getBean("userService",UserService.class);

        userService.add();
    }
}

执行结果:

spring5中文手册_配置文件_15


3、注入属性-内部 bean

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

部门类:

/**
 * @author acoffee
 * @create 2021-03-13 16:39
 */
public class Dept {
    private String dname;

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

    @Override
    public String toString() {
        return "Dept{" +
                "dname='" + dname + '\'' +
                '}';
    }
}

员工类:

/**
 * @author acoffee
 * @create 2021-03-13 16:41
 */
//员工类
public class Emp {
    private String ename;
    private String gender;

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

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

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

    }

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

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

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

<!--内部bean-->
    <bean id="emp" class="com.acoffee.spring5.bean.Emp">
        <!--设置两个普通属性-->
        <property name="ename" value="lucy"></property>
        <property name="gender" value="女"></property>

        <!--设置对象类型属性-->
        <property name="dept">
            <bean id="dept" class="com.acoffee.spring5.bean.Dept">
                <property name="dname" value="保安部"></property>
            </bean>
        </property>
    </bean>

测试类:

@Test
    public void testBean2(){
        //1 加载spring配置文件
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean3.xml");

        //2 获取配置创建的对象
        Emp emp = context.getBean("emp", Emp.class);

        emp.add();
    }

执行结果:

spring5中文手册_xml_16


4、注入属性-级联赋值

(1)第一种写法

<!--级联赋值-->
    <bean id="emp" class="com.acoffee.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="com.acoffee.spring5.bean.Dept">
        <property name="dname" value="财务部"></property>
    </bean>

执行结果:

spring5中文手册_xml_17


(2)第二种写法

<!--级联赋值-->
    <bean id="emp" class="com.acoffee.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="com.acoffee.spring5.bean.Dept">
        <!--<property name="dname" value="财务部"></property>-->
    </bean>

执行结果:

spring5中文手册_配置文件_18

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

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

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

/**
 * @author acoffee
 * @create 2021-03-13 17:55
 */
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;
    }
}

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

/**
 * @author acoffee
 * @create 2021-03-13 17:55
 */
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);
    }
}

测试类:

/**
 * @author acoffee
 * @create 2021-03-13 18:12
 */
public class TestSpring5Demo1 {
    @Test
    public void testCollection(){
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean1.xml");

        Stu stu = context.getBean("stu", Stu.class);

        stu.test();
    }
}

执行结果:

spring5中文手册_java_19


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

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

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

执行结果:

spring5中文手册_xml_20


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:p="http://www.springframework.org/schema/p"
       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="com.acoffee.collectiontype.Book">
        <property name="list" ref="booklist"></property>
    </bean>

Book类:

/**
 * @author acoffee
 * @create 2021-03-13 18:46
 */
public class Book {
    private List<String> list;

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

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

测试类:

@Test
    public void testCollection2() {
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean2.xml");

        Book book = context.getBean("book", Book.class);

        book.test();
    }

执行结果:

spring5中文手册_java_21

IOC 操作 Bean 管理(FactoryBean)

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

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

3、工厂 bean:在配置文件定义 bean 类型可以和返回类型不一样

第一步 创建类,让这个类作为工厂 bean,实现接口 FactoryBean
第二步 实现接口里面的方法,在实现的方法中定义返回的 bean 类型

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 false;
    }
}

bean3.xml配置文件

<bean id="myBean" class="com.acoffee.factorybean.MyBean">
    </bean>

测试类:

@Test
    public void test3(){
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean3.xml");
        Course course = context.getBean("myBean", Course.class);

        System.out.println(course);
    }

执行结果:

spring5中文手册_xml_22

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

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

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

spring5中文手册_java_23


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

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

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

spring5中文手册_xml_24


(3)singleton 和 prototype 区别

第一
singleton 单实例,prototype 多实例

第二
设置 scope 值是 singleton 时候,加载 spring 配置文件时候就会创建单实例对象

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

还有request、session但是我们一般不用

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

1、生命周期
(1)从对象创建到对象销毁的过程

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

3、演示 bean 生命周期

/**
 * @author acoffee
 * @create 2021-03-15 18:32
 */
public class Orders {


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

    private String oname;

    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="com.acoffee.bean.Orders" init-method="initMethod" destroy-method="destroyMethod">
        <property name="oname" value="手机"></property>
    </bean>

测试类:

@Test
    public void testBean3(){
        
//        ApplicationContext context =
//                new ClassPathXmlApplicationContext("bean4.xml");
        
        ClassPathXmlApplicationContext context =
                new ClassPathXmlApplicationContext("bean4.xml");
        Orders orders = context.getBean("orders", Orders.class);
        System.out.println("第四步 获取创建bean实例对象");
        System.out.println(orders);

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

执行结果:

spring5中文手册_xml_25

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

spring5中文手册_java_26

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

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

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

/**
 * @author acoffee
 * @create 2021-03-15 18:57
 */
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="orders" class="com.acoffee.bean.Orders" init-method="initMethod" destroy-method="destroyMethod">
        <property name="oname" value="手机"></property>
    </bean>

    <!--配置后置处理器-->
    <bean id="MyBeanPost" class="com.acoffee.bean.MyBeanPost"></bean>

执行结果:

spring5中文手册_java_27


多了后置处理器之后我们可以清楚的看到多了两步。

IOC 操作 Bean 管理(xml 自动装配,在实际情况下用的较少)

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

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

Dept类:

/**
 * @author acoffee
 * @create 2021-03-15 19:54
 */
public class Dept {
    @Override
    public String toString() {
        return "Dept{}";
    }
}

Emp类:

/**
 * @author acoffee
 * @create 2021-03-15 19:53
 */
public class Emp {
    private Dept dept;

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

    @Override
    public String toString() {
        return "Emp{" +
                "dept=" + dept +
                '}';
    }

    public void test(){

        System.out.println(dept);
    }
}

配置文件:

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

    <bean id="dept" class="com.acoffee.atuowire.Dept"></bean>

执行结果:

spring5中文手册_spring_28


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

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

    <bean id="dept" class="com.acoffee.atuowire.Dept"></bean>
    <!--<bean id="dept1" class="com.acoffee.atuowire.Dept"></bean>  通过byType进行装配的时候,
    我们现在有两个相同类型的bean,他就不能确定到底是用哪个bean去注入所以就会报错,如果实在有多个相同类型的bean,
    我们使用byName-->

执行结果:

spring5中文手册_spring_29

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

1、直接配置数据库信息
(1)配置德鲁伊连接池
(2)引入德鲁伊连接池依赖 jar 包

spring5中文手册_spring_30


直接配置连接池

<!--直接配置连接池-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.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 格式文件,写数据库信息

spring5中文手册_配置文件_31

(2)把外部 properties 属性文件引入到 spring 配置文件中引入 context 名称空间

spring5中文手册_spring5中文手册_32

<?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"
       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 配置文件使用标签引入外部属性文件
    表达式:${properties文件中左边的代码} 如下如:
<!--引入外部属性文件-->
    <context:property-placeholder location="jdbc.properties"/>
    <!--直接配置连接池-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${jdbc.driverclass}"></property>
        <property name="url" value="${jdbc.url}"></property>
        <property name="username" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>

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

1、什么是注解
(1)注解是代码特殊标记,格式:@注解名称(属性名称=属性值, 属性名称=属性值…)
(2)使用注解,注解作用在类上面,方法上面,属性上面
(3)使用注解目的:简化 xml 配置

2、Spring 针对 Bean 管理中创建对象提供注解
(1)@Component
(2)@Service
(3)@Controller
(4)@Repository

  • 上面四个注解功能是一样的,都可以用来创建 bean 实例

3、基于注解方式实现对象创建

第一步 引入依赖

spring5中文手册_spring5中文手册_33


第二步 开启组件扫描

<!--开启组件扫描
        1.如果扫描多个包,多个包之间使用逗号隔开
        2.扫描包的上层目录
    -->
    <context:component-scan base-package="com.acoffee"></context:component-scan>

第三步 创建类,在类上面添加创建对象注解

/**
 * @author acoffee
 * @create 2021-03-15 21:06
 */
//在注解里面value属性值可以省略不写,
//默认值是类的名称,首字母小写:
//UserService → userService
@Component(value="userService") //<bean id="userService" class=".."/>
public class UserService {

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

测试类:

/**
 * @author acoffee
 * @create 2021-03-15 20:59
 */
public class TestSpring5Demo1 {


    @Test
    public void testService() {
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean1.xml");

        UserService userService = context.getBean("userService", UserService.class);
        System.out.println(userService);
        userService.add();
    }
}

执行结果:

spring5中文手册_xml_34


4、开启组件扫描细节配置

<!-- 实例1:
    use-default-filters="false":表示现在不使用默认filter,自己配置filter
    context:include-filter,设置扫描那些内容
    -->
    <context:component-scan base-package="com.acoffee" use-default-filters="false">
        <!--下面这段话的意思是扫描注释为Controller的内容,其他的不扫描-->
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

    <!--实例2:
        下面配置扫描包所有内容
         context:exclude-filter:设置那些内容不进行扫描
    -->
    <context:component-scan base-package="com.acoffee" use-default-filters="false">
        <!--下面这段话的意思是除了不扫描注释为Controller的内容,其他的都扫描-->
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

5、基于注解方式实现属性注入

(1)@Autowired: 根据属性类型进行自动装配
第一步 把 service 和 dao 对象创建,在 service 和 dao 类添加创建对象注解

第二步 在 service 注入 dao 对象,在 service 类添加 dao 类型属性,在属性上面使用注解

@Service
public class UserService {

    //定义dao类型属性
    //不需要添加set方法
    //添加注入属性注解
    @Autowired
    private UserDao userDao;

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

(2)@Qualifier: 根据名称进行注入
这个@Qualifier 注解的使用,和上面@Autowired 一起使用

UserDao 接口:

public interface UserDao {
    public void add();
}

UserService类:

@Service
public class UserService {

    //定义dao类型属性
    //不需要添加set方法
    //添加注入属性注解
    @Autowired //根据类型进行注入
    @Qualifier(value="userDaoImpl1")//根据名称进行注入
    private UserDao userDao;

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

UserDaoImpl 类:

@Repository(value="userDaoImpl1")
public class UserDaoImpl implements UserDao {
    @Override
    public void add() {
        System.out.println("dao add.....");
    }
}

测试类:

@Test
    public void testService() {
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean1.xml");

        UserService userService = context.getBean("userService", UserService.class);
        System.out.println(userService);
        userService.add();
   }

执行结果:

spring5中文手册_spring5中文手册_35


(3)@Resource: 可以根据类型注入,可以根据名称注入

@Service
public class UserService {

    //@Resource //根据类型进行注入
    @Resource(name="userDaoImpl1")//根据名称进行注入
    private UserDao userDao;
    public void add() {
        System.out.println("service add......");
        userDao.add();
    }
}

UserDaoImpl 类:

@Repository(value="userDaoImpl1")
public class UserDaoImpl implements UserDao {
    @Override
    public void add() {
        System.out.println("dao add.....");
    }
}

执行结果:

spring5中文手册_java_36

(4)@Value:注入普通类型属性

@Service
public class UserService {

    @Value(value = "abc")
    private String name;
    ....

6、完全注解开发
(1)创建配置类,替代 xml 配置文件

@Configuration //作为配置类,替代xml配置文件
@ComponentScan(basePackages = {"com.acoffee"})
public class SpringConfig {

}

(2)编写测试类

@Test
    public void testService2() {
    	//加载配置类
        ApplicationContext context =
                new AnnotationConfigApplicationContext(SpringConfig.class);

        UserService userService = context.getBean("userService", UserService.class);
        System.out.println(userService);
        userService.add();
    }