• Spring框架(缺SM整合)


    文章目录

    一.Spring概述

    1.什么是Spring框架

    它是一个容器.它是整合其它框架的框架.它的核心是IOC和AOP.它由20多个模块构成.它在很多领域都提供优秀的解决方案.

    2.Spring的特点

    1)轻量级

    由20多个模块构成,每个jar包都很小,小于1M,核心包也就3M左右.
    对代码无污染.

    2)面向接口编程

    使用接口,就是面向灵活,项目的可扩展性,可维护性都极高.接口不关心实现类的类型.使用时接口指向实现类,切换实现类即可切换整个功能.

    3)AOP:面向切面编程

    就是将公共的,通用的,重复的代码单独开发,在需要的时候反织回去.底层的原理是动态代理.

    4)整合其它框架

    它整合后使其它框架更易用.

    二:IOC控制反转

    3.什么是IOC

    控制反转IoC(Inversion of Control)是一个概念,是一种思想。由Spring容器进行对象的创建和依赖注入.程序员在使用时直接取出使用.

    正转:由程序员进行对象的创建和依赖注入称为正转.程序员说了算.
    Student stu = new Student(); ===>程序员创建对象
    stu.setName(“张三”); ===>程序员进行赋值
    stu.setAge(22);

    反转:由Spring容器创建对象和依赖注入称为反转,将控制权从程序员手中夺走,由给Spring容器,称为反转. 容器说了算.
    ===>Spring容器负责对象的创建
    ===>Spring容器依赖注入值

    切记:Spring容器在启动时,就创建所有的对象stu…

    4.基于xml的IOC

    1)创建对象

    2)给创建的对象赋值

    A.使用setter注入
    注入分为简单类型注入和引用类型注入
    简单类型注入值使用value属性
    引用类型注入值使用ref属性
    必须要注意:使用setter注入必须提供无参的构造方法,必须提供setXXX()方法.

        
        <bean id="stu" class="com.bjpowernode.pojo2.Student">
            <property name="name" value="李四">property>    ===>简单类型注入
            <property name="age" value="22">property>
            <property name="school" ref="school">property>  ===>引用类型注入
        bean>
        
        <bean id="school" class="com.bjpowernode.pojo2.School">
            <property name="name" value="清华大学">property>
            <property name="address" value="海淀区">property>
        bean>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    B.使用构造方法注入
    Student stu = new Student(“张三”,22);

           a.使用构造方法的参数名称进行注入值
                <bean id="school" class="com.bjpowernode.pojo3.School">
    		        <constructor-arg name="name1" value="清华大学">constructor-arg>
    		        <constructor-arg name="address1" value="海淀区">constructor-arg>
    	    	bean>
           b.使用构造方法参数的下标注入值
     			<bean id="stu" class="com.bjpowernode.pojo3.Student">
    		        <constructor-arg index="0" value="钱七">constructor-arg>
    		        <constructor-arg index="1" value="22">constructor-arg>
    		        <constructor-arg index="2" ref="school">constructor-arg>
    		    bean>
           c.使用默认的构造方法的参数的顺序注入值
           		<bean id="stuSequence" class="com.bjpowernode.pojo3.Student">
    		        <constructor-arg value="陈十">constructor-arg>
    		        <constructor-arg value="22">constructor-arg>
    		        <constructor-arg ref="school">constructor-arg>
    		    bean>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    5.项目案例

    使用三层架构进行用户的插入操作.
    界面层,业务逻辑层,数据访问层(模拟).

    Spring会接管三层架构中哪些对象的创建?界面层的对象,业务逻辑层的对象,数据访问层的对象.

    非Spring接管下的三层项目构建:
    实体类
    com.bjpowernode.pojo Users
    数据访问层
    com.bjpowernode.dao UsersMapper.java(接口)
    UsersMapperImpl.java(实现类)
    业务逻辑层
    com.bjpowernode.service UsersService.java(接口)
    UsersServiceImpl.java(实现类 )
    界面层
    com.bjpowernode.controller UsersController.java

    6.基于注解的IOC

    也称为DI(Dependency Injection),它是IOC的具体实现的技术.

    注意:基于注解的IOC,必须要在Spring的核心配置文件中添加包扫描.

    <context:component-scan base-package="com.bjpowernode.s01">
    context:component-scan>
    
    • 1
    • 2

    药: 创建对象并依赖注入
    汤: xml -> 注解annotation
    1)创建对象的注解
    @Component:可以创建任意对象.创建的对象的默认名称是类名的驼峰命名法.也可以指定对象的名称@Component(“指定名称”).
    @Controller:专门用来创建控制器的对象(Servlet),这种对象可以接收用户的请求,可以返回处理结果给客户端.
    @Service:专门用来创建业务逻辑层的对象,负责向下访问数据访问层,处理完毕后的结果返回给界面层.
    @Repository:专门用来创建数据访问层的对象,负责数据库中的增删改查所有操作.

    案例:

    	@Component("stu")  //交给Spring去创建对象,就是在容器启动时创建
    	public class Student {
    	    @Value("张三")  ===>简单类型的值注入
    	    private String name;
    	    @Value("22")
    	    private int age;
            ...}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    2)依赖注入的注解

    简单类型(8种基本类型+String)的注入
    @Value:用来给简单类型注入值

    引用类型的注入
    @Autowired:使用类型注入值,从整个Bean工厂中搜索同源类型的对象进行注入.
    同源类型也可注入.
    什么是同源类型:
    a.被注入的类型(Student中的school)与注入的类型是完全相同的类型
    b.被注入的类型(Student中的school父)与注入的类型(子)是父子类
    c.被注入的类型(Student中的school接口)与注入的类型(实现类)是接口和实现类的类型
    注意:在有父子类的情况下,使用按类型注入,就意味着有多个可注入的对象.此时按照名称进行二次筛选,选中与被注入对象相同名称的对象进行注入.
    @Autowired
    @Qualifier(“名称”):使用名称注入值,从整个Bean工厂中搜索相同名称的对象进行注入.
    注意:如果有父子类的情况下,直接按名称进行注入值.

    7.添加包扫描的方式

    1)单个包扫描(推荐使用)

       <context:component-scan base-package="com.bjpowernode.controller">context:component-scan>
       <context:component-scan base-package="com.bjpowernode.service.impl">context:component-scan>
       <context:component-scan base-package="com.bjpowernode.dao">context:component-scan>
    
    • 1
    • 2
    • 3

    2)多个包扫描,多个包之间以逗号或空格或分号分隔

     <context:component-scan base-package="com.bjpowernode.controller com.bjpowernode.service ,com.bjpowernode.dao">context:component-scan>
    
    • 1

    3)扫描根包(不推荐)

        <context:component-scan base-package="com.bjpowernode">context:component-scan>
        会降低容器启动的速度,导致多做无用功.
    
    • 1
    • 2

    8.为应用指定多个 Spring 配置文件(拆分配置文件)

    当项目越来越大,需要多人合作开发,一个配置就存在很大隐患.
    拆分配置文件的策略

    A.按层拆

        applicationContext_controller.xml        
          <bean id="uController" class="com.bjpowernode.controller.UsersController">
          <bean id="bController" class="com.bjpowernode.controller.BookController">
        applicationContext_service.xml        
          <bean id="uService" class="com.bjpowernode.controller.UsersService">
          <bean id="bService" class="com.bjpowernode.controller.BookService">
        applicationContext_mapper.xml        
          <bean id="uMapper" class="com.bjpowernode.controller.UsersMapper">
          <bean id="bMapper" class="com.bjpowernode.controller.BookMapper">
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    B.按功能拆

          applicationContext_users.xml        
            <bean id="uController" class="com.bjpowernode.controller.UsersController">
            <bean id="uService" class="com.bjpowernode.controller.UsersService">
            <bean id="uMapper" class="com.bjpowernode.controller.UsersMapper">
          applicationContext_book.xml      
            <bean id="bController" class="com.bjpowernode.controller.BookController">
            <bean id="bService" class="com.bjpowernode.controller.BookService">
            <bean id="bMapper" class="com.bjpowernode.controller.BookMapper">
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    9.spring配置文件的整合

    1)单个文件导入

      <import resource="applicatoinContext_mapper.xml">import>
      <import resource="applicatoinContext_service.xml">import>
      <import resource="applicatoinContext_controller.xml">import>
    
    • 1
    • 2
    • 3

    2)批量导入

      <import resource="applicatoinContext_*.xml">import>
    
    • 1

    三.AOP面向切面编程

    10.面向切面编程AOP

    AOP(Aspect Orient Programming),面向切面编程
    切面:公共的,通用的,重复的功能称为切面,面向切面编程就是将切面提取出来,单独开发,在需要调用的方法中通过动态代理的方式进行织入.

    11.手写AOP框架

    业务:图书购买业务
    切面:事务

    1)第一个版本:业务和切面紧耦合在一起,没有拆分.

    BookServiceImpl(实现类)

    package com.jm.proxy1;
    
    /**
    * 图书购买业务和事务切面耦合在一起
    */
    public class BookServiceImpl {
       public void buy(){
           try {
               System.out.println("事务开启........");
               System.out.println("图书购买业务实现........");
               System.out.println("事务提交........");
           } catch (Exception e) {
               System.out.println("事务回滚........");
           }
       }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    2)第二个版本:使用子类代理的方式拆分业务和切面.

    BookServiceImpl(父类)

    package com.jm.proxy2;
    
    /**
     * 使用子类代理的方式进行业务和切面的切分
     */
    public class BookServiceImpl {
        //在父类中只有干干净净的业务
        public void buy(){
            System.out.println("图书购买业务实现.......");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    SubBookServiceImpl(子类代理)

    package com.jm.proxy2;
    
    /**
     * 子类就是代理类,将父类的图书购买功能添加事务切面
     */
    public class SubBookServiceImpl extends BookServiceImpl{
        @Override
        public void buy() {
            try {
                //事务切面
                System.out.println("事务开启........");
                //主业务实现
                super.buy();
                //事务切面
                System.out.println("事务提交........");
            } catch (Exception e) {
                System.out.println("事务回滚........");
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    测试类

    package com.jm.test;
    
    import com.jm.proxy2.BookServiceImpl;
    import com.jm.proxy2.SubBookServiceImpl;
    import org.junit.Test;
    
    public class MyTest02 {
        @Test
        public void test02(){
            BookServiceImpl bookService=new SubBookServiceImpl();
            bookService.buy();
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    3)第三个版本:使用静态代理拆分业务和切面.业务和业务接口已拆分.此时切面紧耦合在业务中.

    Service(业务接口)

    package com.jm.proxy3;
    
    /**
     * 业务接口
     */
    public interface Service {
        //业务功能
        void buy();
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    BookServiceImpl(业务实现类)

    package com.jm.proxy3.impl;
    
    import com.jm.proxy3.Service;
    
    /**
     * 目标对象
     */
    public class BookServiceImpl implements Service {
        @Override
        public void buy() {
            System.out.println("图书购买业务功能实现......");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    ProductServiceImpl(业务实现类)

    package com.jm.proxy3.impl;
    
    import com.jm.proxy3.Service;
    
    public class ProductServiceImpl implements Service {
        @Override
        public void buy() {
            System.out.println("商品购买业务实现.......");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    Agent(代理类)

    package com.jm.proxy3.impl;
    
    import com.jm.proxy3.Service;
    
    /**
     * 静态代理已经实现了目标对象的灵活切换
     * 图书购买业务、商品购买业务
     */
    public class Agent implements Service {
        //设计成员变量的类型为接口,为了灵活切换目标对象
        public Service target;
        //使用构造方法传入目标对象
        public Agent(Service target){
            this.target=target;
        }
        @Override
        public void buy() {
            try {
                //切面功能
                System.out.println("事务开启.........");
                //业务功能
                target.buy();
                //切面功能
                System.out.println("事务提交.........");
            } catch (Exception e) {
                System.out.println("事务回滚.........");
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    测试类

    package com.jm.test;
    
    import com.jm.proxy3.Service;
    import com.jm.proxy3.impl.Agent;
    import com.jm.proxy3.impl.BookServiceImpl;
    import org.junit.Test;
    
    public class MyTest03 {
        @Test
        public void test03(){
            Service agent=new Agent(new BookServiceImpl());
            agent.buy();
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    4)第四个版本:使用静态代理拆分业务和业务接口,切面和切面接口.

    Service(业务接口)

    package com.jm.proxy4;
    
    /**
     * 业务接口
     */
    public interface Service {
        //业务功能
        void buy();
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    Aop(切面接口)

    package com.jm.proxy4;
    
    /**
     * 切面接口
     */
    public interface Aop {
        default void before(){};
        default void after(){};
        default void exception(){};
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    BookServiceImpl(业务实现类)

    package com.jm.proxy4.impl;
    
    import com.jm.proxy4.Service;
    
    /**
     * 目标对象
     */
    public class BookServiceImpl implements Service {
        @Override
        public void buy() {
            System.out.println("图书购买业务功能实现......");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    ProductServiceImpl(业务实现类)

    package com.jm.proxy4.impl;
    
    import com.jm.proxy4.Service;
    
    public class ProductServiceImpl implements Service {
        @Override
        public void buy() {
            System.out.println("商品购买业务实现.......");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    TransAop(切面实现类)

    package com.jm.proxy4.impl;
    
    import com.jm.proxy4.Aop;
    
    public class TransAop implements Aop {
        @Override
        public void before() {
            System.out.println("事务开启..........");
        }
    
        @Override
        public void after() {
            System.out.println("事务提交..........");
        }
    
        @Override
        public void exception() {
            System.out.println("事务回滚..........");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    LogAop(切面实现类)

    package com.jm.proxy4.impl;
    
    import com.jm.proxy4.Aop;
    
    public class LogAop implements Aop {
        @Override
        public void before() {
            System.out.println("前置日志输出..........");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    Agent(代理类)

    package com.jm.proxy4.impl;
    
    import com.jm.proxy4.Service;
    import com.jm.proxy4.Aop;
    
    /**
     * 静态代理已经实现了目标对象的灵活切换
     * 图书购买业务、商品购买业务
     */
    public class Agent implements Service {
        //设计成员变量的类型为接口,为了灵活切换目标对象
        public Service target;
        public Aop aop;
        //使用构造方法传入目标对象
        public Agent(Service target, Aop aop){
            this.target=target;
            this.aop=aop;
        }
        @Override
        public void buy() {
            try {
                //切面
                aop.before(); // 事务 日志
                //业务
                target.buy(); // 图书 商品
                //切面
                aop.after(); // 事务
            } catch (Exception e) {
                //切面
                aop.exception();
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34

    测试类

    package com.jm.test;
    
    import com.jm.proxy4.Service;
    import com.jm.proxy4.impl.Agent;
    import com.jm.proxy4.impl.LogAop;
    import com.jm.proxy4.impl.ProductServiceImpl;
    import com.jm.proxy4.impl.TransAop;
    import org.junit.Test;
    
    public class MyTest04 {
        @Test
        public void test04(){
            //切入多个切面!
            Service agent=new Agent(new ProductServiceImpl(),new TransAop());
            Service agent1=new Agent(agent,new LogAop());
            agent1.buy();
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    5)第五个版本:使用动态代理完成第四个版本的优化.

    Service(业务接口)

    package com.jm.proxy5;
    
    /**
     * 业务接口
     */
    public interface Service {
        //业务功能
        void buy();
        void show();
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    Aop(切面接口)

    package com.jm.proxy5;
    
    /**
     * 切面接口
     */
    public interface Aop {
        default void before(){};
        default void after(){};
        default void exception(){};
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    BookServiceImpl(业务实现类)

    package com.jm.proxy5.impl;
    
    import com.jm.proxy5.Service;
    
    /**
     * 目标对象
     */
    public class BookServiceImpl implements Service {
        @Override
        public void buy() {
            System.out.println("图书购买业务功能实现......");
        }
    
        @Override
        public void show() {
            System.out.println("图书show!!!!!!!!!!!!!!!");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    ProductServiceImpl(业务实现类)

    package com.jm.proxy5.impl;
    
    import com.jm.proxy5.Service;
    
    public class ProductServiceImpl implements Service {
        @Override
        public void buy() {
            System.out.println("商品购买业务实现.......");
        }
    
        @Override
        public void show() {
            System.out.println("商品show!!!!!!!!!!!!!!!!!!!!!!!!!!");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    LogAop(切面实现类)

    package com.jm.proxy5.impl;
    
    import com.jm.proxy5.Aop;
    
    public class LogAop implements Aop {
        @Override
        public void before() {
            System.out.println("前置日志输出..........");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    TransAop(切面实现类)

    package com.jm.proxy5.impl;
    
    import com.jm.proxy5.Aop;
    
    public class TransAop implements Aop {
        @Override
        public void before() {
            System.out.println("事务开启..........");
        }
    
        @Override
        public void after() {
            System.out.println("事务提交..........");
        }
    
        @Override
        public void exception() {
            System.out.println("事务回滚..........");
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    proxyFactory(代理类)

    package com.jm.proxy5.impl;
    
    import com.jm.proxy5.Service;
    import com.jm.proxy5.Aop;
    
    import java.lang.reflect.InvocationHandler;
    import java.lang.reflect.Method;
    import java.lang.reflect.Proxy;
    
    /**
     * 动态代理类
     */
    public class proxyFactory {
        public static Object getAgent(Service target, Aop aop){
            return Proxy.newProxyInstance(target.getClass().getClassLoader(), target.getClass().getInterfaces(),
                    new InvocationHandler() {
                        @Override
                        public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                            Object obj=null;
                            try {
                                //切面
                                aop.before();
                                //业务
                                obj = method.invoke(target, args);
                                //切面
                                aop.after();
                            } catch (Exception e) {
                                aop.exception();
                            }
                            return obj;
                        }
                    });
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    测试类

    package com.jm.test;
    
    
    import com.jm.proxy5.Service;
    import com.jm.proxy5.impl.*;
    import org.junit.Test;
    
    public class MyTest05 {
        @Test
        public void test05(){
            //得到动态代理对象
            Service agent= (Service) proxyFactory.getAgent(new ProductServiceImpl(),new TransAop());
            agent.show();
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    12.Spring支持的AOP的实现

    Spring支持AOP的编程,常用的有以下几种:
    1)Before通知:在目标方法被调用前调用,涉及接口org.springframework.aop.MethodBeforeAdvice;
    2)After通知:在目标方法被调用后调用,涉及接口为org.springframework.aop.AfterReturningAdvice;
    3)Throws通知:目标方法抛出异常时调用,涉及接口org.springframework.aop.ThrowsAdvice;
    4)Around通知:拦截对目标对象方法调用,涉及接口为org.aopalliance.intercept.MethodInterceptor。

    13.AOP常用的术语

    1)切面(Aspect)

    就是那些重复的,公共的,通用的功能称为切面,例如:日志,事务,权限.

    2)连接点(PointJoin)

    就是目标方法.因为在目标方法中要实现目标方法的功能和切面功能.

    3)切入点(Pointcut)

    指定切入的位置,多个连接点构成切入点.切入点可以是一个目标方法,可以是一个类中的所有方法,可以是某个包下的所有类中的方法.

    4)目标对象(Target)

    操作谁,谁就是目标对象.

    5)通知(Advice)

    来指定切入的时机.是在目标方法执行前还是执行后还是出错时,还是环绕目标方法切入切面功能.

    14.什么是AspectJ框架

    AspectJ 是一个优秀面向切面的框架,它扩展了 Java 语言,提供了强大的切面实现。它因为是基于java语言开发的,所以无缝扩展.easy to learn and use(易学易用).

    15.AspectJ常见通知类型

    AspectJ 中常用的通知有四种类型:

    1)前置通知@Before

    2)后置通知@AfterReturning

    3)环绕通知@Around

    4)最终通知@After

    5)定义切入点@Pointcut(了解)

    16.AspectJ 的切入点表达式(掌握)

    规范的公式:
    execution(访问权限 方法返回值 方法声明(参数) 异常类型)
    简化后的公式:
    execution( 方法返回值 方法声明(参数) )

    用到的符号:
    * 代码任意个任意的字符(通配符)
    .. 如果出现在方法的参数中,则代表任意参数
    如果出现在路径中,则代表本路径及其所有的子路径

    示例:
    execution(public * (…)) :任意的公共方法
    execution(
    set*(…)):任何一个以“set”开始的方法
    execution(* com.xyz.service.impl..(…)):任意的返回值类型,在com.xyz.service.impl包下的任意类的任意方法的任意参数
    execution(* com.xyz.service….(…)):任意的返回值类型 ,在com.xyz.service及其子包下的任意类的任意方法的任意参数
    com.xyz.service.a.b..(…) com.xyz.service..(…)
    execution(* …service..(…)):service之前可以有任意的子包
    execution(
    .service..*(…)):service之前只有一个包

    17.AspectJ的前置通知@Before

    在目标方法执行前切入切面功能.在切面方法中不可以获得目标方法的返回值,只能得到目标方法的签名.

    实现的步骤:
    添加依赖

         <dependency>
             <groupId>org.springframeworkgroupId>
             <artifactId>spring-aspectsartifactId>
             <version>5.3.18version>
         dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5

    1)创建业务接口
    2)创建业务实现
    3)创建切面类,实现切面方法
    4)在applicationContext.xml文件中进行切面绑定

    项目案例:

    @Aspect  //交给AspectJ的框架去识别切面类
    @Component
    public class MyAspect {
      /**
       * 所有切面的功能都是由切面方法来实现的
       * 可以将各种切面都在此类中进行开发
       *
       * 前置通知的切面方法的规范
       * 1)访问权限是public
       * 2)方法的返回值是void
       * 3)方法名称自定义
       * 4)方法没有参数,如果有也只能是JoinPoint类型
       * 5)必须使用@Before注解来声明切入的时机是前切功能和切入点
       *   参数:value  指定切入点表达式
       *
       * 业务方法
       * public String doSome(String name, int age)
       */
      @Before(value = "execution(public String com.bjpowernode.s01.SomeServiceImpl.*(String,int))")
      public void myBefore(){
          System.out.println("切面方法中的前置通知功能实现............");
      }
    
      @Before(value = "execution(public * com.bjpowernode.s01.SomeServiceImpl.*(..))")
      public void myBefore(){
          System.out.println("切面方法中的前置通知功能实现............");
      }
    
      @Before(value = "execution( * com.bjpowernode.s01.*.*(..))")
      public void myBefore(JoinPoint jp){
          System.out.println("切面方法中的前置通知功能实现............");
          System.out.println("目标方法的签名:"+jp.getSignature());
          System.out.println("目标方法的参数:"+ Arrays.toString(jp.getArgs()));
      }
      @Before(value = "execution( * com.bjpowernode.s01..*(..))")
      public void myBefore(){
          System.out.println("切面方法中的前置通知功能实现............");
      }
    
      @Before(value = "execution( * *(..))")
      public void myBefore(){
          System.out.println("切面方法中的前置通知功能实现............");
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44

    18.AspectJ框架切换JDK动态代理和CGLib动态代理

        <aop:aspectj-autoproxy >aop:aspectj-autoproxy>  ===>默认是JDK动态代理,取时必须使用接口类型
        <aop:aspectj-autoproxy proxy-target-class="true">aop:aspectj-autoproxy>  ==>设置为CGLib子类代理,可以使用接口和实现类接
        记住:使用接口来接,永远不出错.
    
    • 1
    • 2
    • 3

    19.@AfterReturning后置通知

    后置通知是在目标方法执行后切入切面功能,可以得到目标方法的返回值.如果目标方法的返回值是简单类型(8种基本类型+String)则不可改变.如果目标方法的返回值是引用类型则可以改变.

     @Aspect
     @Component
     public class MyAspect {
         /**
          * 后置通知的方法的规范
          * 1)访问权限是public
          * 2)方法没有返回值void
          * 3)方法名称自定义
          * 4)方法有参数(也可以没有参数,如果目标方法没有返回值,则可以写无参的方法,但一般会写有参,这样可以处理无参可以处理有参),这个切面方法的参数就是目标方法的返回值
          * 5)使用@AfterReturning注解表明是后置通知
          *   参数:
          *      value:指定切入点表达式
          *      returning:指定目标方法的返回值的名称,则名称必须与切面方法的参数名称一致.
          */
         @AfterReturning(value = "execution(* com.bjpowernode.s02.*.*(..))",returning = "obj")
         public void myAfterReturning(Object obj){
             System.out.println("后置通知功能实现..............");
             if(obj != null){
                 if(obj instanceof String){
                     obj = obj.toString().toUpperCase();
                     System.out.println("在切面方法中目标方法的返回值:"+obj);
                 }
                 if(obj instanceof Student){
                     Student stu = (Student) obj;
                     stu.setName("李四");
                     System.out.println("在切面方法中目标方法的返回值:"+stu);
                 }
             }
         }
     }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    20.环绕通知@Around

    它是通过拦截目标方法的方式 ,在目标方法前后增强功能的通知.它是功能最强大的通知,一般事务使用此通知.它可以轻易的改变目标方法的返回值.

    @Aspect
    @Component
    public class MyAspect {
      /**
       * 环绕通知方法的规范
       * 1)访问权限是public
       * 2)切面方法有返回值,此返回值就是目标方法的返回值
       * 3)方法名称自定义
       * 4)方法有参数,此参数就是目标方法
       * 5)回避异常Throwable
       * 6)使用@Around注解声明是环绕通知
       *   参数:
       *      value:指定切入点表达式
       */
    
      @Around(value = "execution(* com.bjpowernode.s03.*.*(..))")
      public Object myAround(ProceedingJoinPoint pjp) throws Throwable {
          //前切功能实现
          System.out.println("环绕通知中的前置功能实现............");
          //目标方法调用
          Object obj = pjp.proceed(pjp.getArgs());
          //后切功能实现
          System.out.println("环绕通知中的后置功能实现............");
          return obj.toString().toUpperCase();  //改变了目标方法的返回值
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    21.最终通知@After

    无论目标方法是否正常执行,最终通知的代码都会被执行.

    @Aspect // 把当前类识别为一个切面供容器读取
    @Component // 把当前类实例化到spring容器中
    public class MyAgent {
      /**
       * 最终通知的规范
       * 1)访问权限是public
       * 2)方法没有返回值
       * 3)方法名称自定义
       * 4)方法没有参数,如果有只能是JoinPoint
       * 5)使用@After注解声明是最终通知
       *  参数:
       *      value:指定切入点表达式
       */
      @After(value = "execution(* com.jm.s04.*.*(..))")
      public void myAfter(){
          System.out.println("最终通知的功能!!!!!");
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    22.给切入点表达式起别名@Pointcut

    如果多个切面切入到同一个切入点,可以使用别名简化开发.
    使用@Pointcut注解,创建一个空方法,此方法的名称就是别名.

    @Aspect // 把当前类识别为一个切面供spring容器使用
    @Component // 把当前类实例化到spring容器中
    public class MyAgent {
      @Before(value = "mycut()")
      public void myBefore(){
          System.out.println("前置通知!");
      }
      @AfterReturning(value = "mycut()",returning = "obj")
      public void myAfterReturning(Object obj){
          System.out.println("后置通知!");
      }
      @After(value = "mycut()")
      public void myAfter(){
          System.out.println("最终通知!");
      }
      @Around(value = "mycut()")
      public Object myAround(ProceedingJoinPoint pjp) throws Throwable {
          System.out.println("环绕通知中的前置通知!");
          Object obj=pjp.proceed(pjp.getArgs());
          System.out.println("环绕通知中的后置通知!");
          return obj;
      }
      @Pointcut(value = "execution(* com.jm.s05.*.*(..))")
      public void mycut(){
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    四.事务(整合SM)

    23.SM整合的步骤

    1)建表
    2)新建项目,选择quickstart模板
    3)修改目录
    4)修改pom.xml文件,添加相关的依赖(使用老师提供)
    5)添加MyBatis相应的模板(SqlMapConfig.xml和XXXMapper.xml文件)
    6)添加SqlMapConfig.xml文件(MyBatis核心配置文件),并拷贝jdbc.propertiest属性文件到resources目录下
    7)添加applicationContext_mapper.xml
    8)添加applicationContext_service.xml
    9)添加Users实体类,Accounts实体类
    10)添加mapper包,添加UsersMapper接口和UsersMapper.xml文件并开发
    11)添加service包,添加UsersService接口和UsersServiceImpl实现类
    12)添加测试类进行功能测试

    24.基于注解的事务添加步骤

    1)在applicationContext_service.xml文件中添加事务管理器

      <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
          
          <property name="dataSource" ref="dataSource">property>
       bean>
    
    • 1
    • 2
    • 3
    • 4

    2)在applicationContext_service.xml文件中添加事务的注解驱动

      <tx:annotation-driven transaction-manager="transactionManager">tx:annotation-driven>
    
    • 1

    3)在业务逻辑的实现类上添加注解@Transactional(propagation = Propagation.REQUIRED)
    REQUIRED表示增删改操作时必须添加的事务传播特性

    25.@Transactional注解参数详解

    @Transactional(propagation = Propagation.REQUIRED,//事务的传播特性
            noRollbackForClassName = "ArithmeticException", //指定发生什么异常不回滚,使用的是异常的名称
            noRollbackFor = ArithmeticException.class,//指定发生什么异常不回滚,使用的是异常的类型
            rollbackForClassName = "",//指定发生什么异常必须回滚
            rollbackFor = ArithmeticException.class,//指定发生什么异常必须回滚
            timeout = -1, //连接超时设置,默认值是-1,表示永不超时
            readOnly = false, //默认是false,如果是查询操作,必须设置为true.
            isolation = Isolation.DEFAULT//使用数据库自已的隔离级别        
    )
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    26.Spring的两种事务处理方式

    1)注解式的事务

    使用@Transactional注解完成事务控制,此注解可添加到类上,则对类中所有方法执行事务的设定.此注解可添加到方法上,只是对此方法执行事务的处理.

    2)声明式事务(重点)

    在配置文件中添加一次,整个项目遵循事务的设定.

    27.Spring中事务的五大隔离级别

    1).未提交读(Read Uncommitted):允许脏读,也就是可能读取到其他会话中未提交事务修改的数据

    2).提交读(Read Committed):只能读取到已经提交的数据。Oracle等多数数据库默认都是该级别 (不重复读)

    3).可重复读(Repeated Read):可重复读。在同一个事务内的查询都是事务开始时刻一致的,InnoDB默认级别。在SQL标准中,该隔离级别消除了不可重复读,但是还存在幻象读,但是innoDB解决了幻读

    4).串行读(Serializable):完全串行化的读,每次读都需要获得表级共享锁,读写相互都会阻塞

    5).使用数据库默认的隔离级别isolation = Isolation.DEFAULT

    MySQL:mysql默认的事务处理级别是’REPEATABLE-READ’,也就是可重复读
    Oracle:oracle数据库支持READ COMMITTED 和 SERIALIZABLE这两种事务隔离级别。默认系统事务隔离级别是READ COMMITTED,也就是读已提交

    28.为什么添加事务管理器

    JDBC: Connection con.commit(); con.rollback();
    MyBatis: SqlSession sqlSession.commit(); sqlSession.rollback();
    Hibernate: Session session.commit(); session.rollback();

    事务管理器用来生成相应技术的连接+执行语句的对象.

    如果使用MyBatis框架,必须使用DataSourceTransactionManager类完成处理

       <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
          
          <property name="dataSource" ref="dataSource">property>
       bean>
    
    • 1
    • 2
    • 3
    • 4

    项目中的所有事务,必须添加到业务逻辑层上.

    29.Spring事务的传播特性

    多个事务之间的合并,互斥等都可以通过设置事务的传播特性来解决.

    PROPAGATION_REQUIRED:必被包含事务(增删改必用)
    PROPAGATION_REQUIRES_NEW:自己新开事务,不管之前是否有事务
    PROPAGATION_SUPPORTS:支持事务,如果加入的方法有事务,则支持事务,如果没有,不单开事务
    PROPAGATION_NEVER:不能运行中事务中,如果包在事务中,抛异常
    PROPAGATION_NOT_SUPPORTED:不支持事务,运行在非事务的环境
    不常用
    PROPAGATION_MANDATORY:必须包在事务中,没有事务则抛异常
    PROPAGATION_NESTED:嵌套事务

    30.为了测试传播特性改造项目

        @Service  //交给Spring去创建对象
    	@Transactional(propagation = Propagation.REQUIRED)
    	public class UsersServiceImpl implements UsersService {    
    	    @Autowired
    	    UsersMapper usersMapper;
    
    	    @Autowired
    	    AccountsService accountsService;
    
    	    @Override
    	    public int insert(Users users) {
    	        int num = usersMapper.insert(users);
    	        System.out.println("用户增加成功!num="+num);
    
    	        //调用帐户的增加操作,调用的帐户的业务逻辑层的功能
    	        num = accountsService.save(new Accounts(300,"王五","帐户好的呢!"));
    	        return num;
    	    }
    	}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    31.声明式事务

    Spring非常有名的事务处理方式.声明式事务.

    要求项目中的方法命名有规范:

    1)完成增加操作包含 add save insert set
    2)更新操作包含 update change modify
    3)删除操作包含 delete drop remove clear
    4)查询操作包含 select find search get

    配置事务切面时可以使用 通配符* 来匹配所有方法

     
       <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
           <property name="dataSource" ref="dataSource">property>
       bean>
    
       
       <tx:advice id="myadvice" transaction-manager="transactionManager">
           <tx:attributes>
               <tx:method name="*select*" read-only="true"/>
               <tx:method name="*find*" read-only="true"/>
               <tx:method name="*search*" read-only="true"/>
               <tx:method name="*get*" read-only="true"/>
               <tx:method name="*insert*" propagation="REQUIRED" no-rollback-for="ArithmeticException"/>
               <tx:method name="*add*" propagation="REQUIRED"/>
               <tx:method name="*save*" propagation="REQUIRED" no-rollback-for="ArithmeticException"/>
               <tx:method name="*set*" propagation="REQUIRED"/>
               <tx:method name="*update*" propagation="REQUIRED"/>
               <tx:method name="*change*" propagation="REQUIRED"/>
               <tx:method name="*modify*" propagation="REQUIRED"/>
               <tx:method name="*delete*" propagation="REQUIRED"/>
               <tx:method name="*remove*" propagation="REQUIRED"/>
               <tx:method name="*drop*" propagation="REQUIRED"/>
               <tx:method name="*clear*" propagation="REQUIRED"/>
               <tx:method name="*" propagation="SUPPORTS"/>
           tx:attributes>
       tx:advice>
       
       <aop:config>
           <aop:pointcut id="mycut" expression="execution(* com.bjpowernode.service.impl.*.*(..))">aop:pointcut>
           <aop:advisor  advice-ref="myadvice" pointcut-ref="mycut">aop:advisor>
       aop:config>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    32.Spring的xml模板

    32.1 applicationContext_mapper

    
    <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 https://www.springframework.org/schema/context/spring-context.xsd">
    
        
        <context:property-placeholder location="jdbc.properties">context:property-placeholder>
    
        
        <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
            <property name="driverClassName" value="${jdbc.driver}">property>
            <property name="url" value="${jdbc.url}">property>
            <property name="username" value="${jdbc.username}">property>
            <property name="password" value="${jdbc.password}">property>
        bean>
    
        
        <bean class="org.mybatis.spring.SqlSessionFactoryBean">
            
            <property name="dataSource" ref="dataSource">property>
            
            <property name="configLocation" value="mybatis-config.xml">property>
            
            <property name="typeAliasesPackage" value="">property>
        bean>
        
        
        <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <property name="basePackage" value="">property>
        bean>
    beans>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32

    32.2 applicationContext_service(注解式事务)

    
    <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:tx="http://www.springframework.org/schema/tx"
           xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
    
        
        <import resource="applicationContext_mapper.xml">import>
    
        
        <context:component-scan base-package="">context:component-scan>
    
        
        
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            
            <property name="dataSource" ref="dataSource">property>
        bean>
        
        <tx:annotation-driven transaction-manager="transactionManager">tx:annotation-driven>
    
    beans>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23

    32.3 applicationContext_trans(声明式事务)

    
    <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:tx="http://www.springframework.org/schema/tx"
           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 https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">
    
        
        
        <import resource="applicationContext_mapper.xml">import>
        
        <context:component-scan base-package="">context:component-scan>
        
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource">property>
        bean>
        
        <tx:advice id="myadvice" transaction-manager="transactionManager">
            <tx:attributes>
                <tx:method name="*select*" read-only="true"/>
                <tx:method name="*find*" read-only="true"/>
                <tx:method name="*search*" read-only="true"/>
                <tx:method name="*get*" read-only="true"/>
                <tx:method name="*insert*" propagation="REQUIRED"/>
                <tx:method name="*add*" propagation="REQUIRED"/>
                <tx:method name="*set*" propagation="REQUIRED"/>
                <tx:method name="*save*" propagation="REQUIRED"/>
                <tx:method name="*update*" propagation="REQUIRED"/>
                <tx:method name="*change*" propagation="REQUIRED"/>
                <tx:method name="*modify*" propagation="REQUIRED"/>
                <tx:method name="*delete*" propagation="REQUIRED"/>
                <tx:method name="*remove*" propagation="REQUIRED"/>
                <tx:method name="*clear*" propagation="REQUIRED"/>
                <tx:method name="*drop*" propagation="REQUIRED"/>
                <tx:method name="*" propagation="SUPPORTS"/>
            tx:attributes>
        tx:advice>
        
        <aop:config>
            <aop:pointcut id="mycut" expression=""/>
            <aop:advisor advice-ref="myadvice" pointcut-ref="mycut"/>
        aop:config>
    beans>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43

    五.知识网络

    在这里插入图片描述

    写在最后.Thanks

    感谢动力节点荣姐:https://www.bilibili.com/video/BV1q94y1o7ts/?spm_id_from=333.999.0.0

  • 相关阅读:
    express学习6-express参数中get参数的获取
    由小见大!不规则造型按钮解决方案
    Node.js安装记录
    实验六 TCP及应用分析
    【大语言模型】ACL2024论文-03 MAGE: 现实环境下机器生成文本检测
    Tomcat
    618购物狂欢节有哪些数码好物值得抢购?年终必备神器清单大揭秘!
    Windows内核--CreateProcess到内核NtCreateProcess(2.3)
    RPC 框架设计 四、Netty高级应用
    单项资助30万!2022年湖北省实验动物研究领域项目申报要求和申报流程
  • 原文地址:https://blog.csdn.net/m0_66689823/article/details/126822724