Spring

  • Spring介绍
  • 优点:
  • Spring组成及拓展
  • Spring由七大模块组成:
  • 拓展:
  • Spring弊端:
  • IOC理论推导
  • IOC的本质
  • Hello World
  • IOC创建对象的方式
  • Spring配置说明
  • DI依赖注入环境
  • 依赖注入之set注入
  • C命名空间和P命名空间注入
  • bean的作用域
  • 自动装配bean
  • 注解实现自动装配
  • Spring注解开发
  • 使用javaConfig实现配置
  • 静态代理模式
  • 动态代理详解
  • AOP实现方式一
  • AOP实现方式二
  • 注解实现AOP
  • 回顾MyBatis
  • 整合MyBatis方式一
  • 整合MyBatis方式二
  • 事务回顾
  • Spring声明式事物
  • 总结
  • 狂神说 Spring 上课笔记
  • 未完待续


Spring介绍

简化开发
适合任何java应用
Spring的前身是interface21框架
interface21框架是2002年发布
Spring框架是2004年发布
Spring官方文档 spring框架源码很值得学习,里面使用的设计模式
spring框架是一个大杂烩,支持整合很多框架

SSH:Struct2 + Spring + Hibernate
SSM:SpringMVC + Spring + Mybatis

Spring相关官方文档:
Spring Boot中文文档Spring Framework中文文档Spring Cloud中文文档Spring Security中文文档Spring Session中文文档Spring AMQP中文文档Spring Data JPA中文文档Spring Data JDBC中文文档Spring Data Redis中文文档

优点:

Spring是一个开源的免费的框架(容器)
Spring是一个轻量级的、非侵入式的框架
控制翻转(IOC),面向切面编程(AOP)
支持事物的处理,对框架整合的支持

总结一句话:Spring是一个轻量级的控制翻转和面向切面编程的框架

Spring组成及拓展

Spring由七大模块组成:

  • Spring AOP
  • Spring ORM
  • Spring DAO
  • Spring Web
  • Spring Context
  • Spring Web MVC
  • Spring Core

拓展:

Spring Boot
一个快速配置的脚手架
基于SpringBoot可以快速的开发单个微服务
Spring Cloud
SpringCloud是基于SpringBoot实现的

Spring弊端:

发展的太久之后,违背了原来的理念–配置十分繁琐

IOC理论推导

这种思想,从本质上解决问题,程序员不用再去管理对象的创建了。系统的耦合性大大降低了,可以更加专注业务的实现上。这是IOC的原型

IOC的本质

控制反转(IOC)是一种思想、设计模式,DI(依赖注入)是一种实现方式

IOC是Spring的核心内容

控制反转是一种通过描述(XML或者注释)并通过第三方生产或获取特定对象的方式。在Spring中实现控制反转的是IOC容器,其实现方法是依赖注入(Dependency Injection)

Hello World

在resources(classpath)中创建配置文件,名字不限制,一般命名为application.xml

创建application.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-2.5.xsd">


    <!--
    使用Spring来创建对象,在Spring这些都称之为bean
    本质就是User user = new User();

    id : 变量名
    class : 类路径(包名+类名)

    property : 给对象中的属性赋值
	value : 值
	ref : 引用其他的bean
    -->

    <bean id="user" class="com.hupf.spring.demo.bean.User">
        <property name="id" value="100"></property>
    </bean>


</beans>

创建Spring的测试类

public class Run {
    public static void main(String[] args) {
        // 获取Spring的上下文对象
        ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
        // 我们的对象现在都在Spring中的管理了,我们想要使用的话,直接去里面取出来就可以
        User user = (User) context.getBean("user");
        System.out.println(user.getId());
    }
}

pom.xml导入依赖

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.hupf</groupId>
    <artifactId>spring-demo</artifactId>
    <version>1.0-SNAPSHOT</version>


    <properties>
        <org.springframework.version>4.3.19.RELEASE</org.springframework.version>
        <commons-logging.version>1.2</commons-logging.version>
        <junit.version>4.12</junit.version>
    </properties>

    <dependencies>
        <!-- Spring核心依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring beans包-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring 容器包 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring容器依赖包,将第三方库整合进Spring应用上下文,提供支持 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring aop依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring aspects依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- aspectj依赖 -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>1.9.4</version>
        </dependency>
    </dependencies>


</project>

使用了IOC后,我们彻底不用在程序中改动了,要实现不同的操作,只需要在xml配置文件中进行修改,所谓的IOC,一句话搞定,对象由Spring来创建,管理,装配

ApplicationContext是一个接口,具有很多实现类,常用的是:

  • ClassPathXmlApplicationContext:从classpath的xml中初始化IOC容器
  • SystemXmlApplicationContext:从系统中初始化IOC容器
  • AnnotationXmlApplicationContext:根据注解初始化IOC容器

IOC创建对象的方式

对象配置到xml配置文件,spring的底层也是通过new的方式创建的对象
1.使用无参构造创建对象是默认的方式
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-2.5.xsd">

    <!--通过下标赋值-->
    <bean id="user1" class="com.hupf.spring.demo.bean.User">
        <constructor-arg index="0" value="100"></constructor-arg>
    </bean>
    <!--通过类型赋值-->
    <bean id="user2" class="com.hupf.spring.demo.bean.User">
        <constructor-arg type="java.lang.Integer" value="100"></constructor-arg>
    </bean>
    <!--通过参数名-->
    <bean id="user3" class="com.hupf.spring.demo.bean.User">
        <constructor-arg name="id" value="100"></constructor-arg>
    </bean>
    
</beans>

只要配置到xml中,IOC容器就会全部创建好,不管程序中是否使用

总结:在配置文件加载的时候,容器中管理的对象就已经实例化了!

Spring配置说明

alias别名:

<alias name="user" alias="xx"/>

就是给某一个bean再起一个别名,获取bean的时候两个名字都是可以使用的

bean的配置:

<!--
id:bean的唯一标示符
class:bean的全限定名,就是包名+类名
name:就是别名的意思(若有多个,使用逗号分割)
-->
<bean id="user" class="com.hupf.pojo.user" name="alias"/>

import导入:
一般用于团队开发使用,可以将多个配置文件导入合并成为一个配置文件

<import resource="bean2.xml"/>
<import resource="bean3.xml"/>
<import resource="bean4.xml"/>

DI依赖注入环境

构造器注入:前面有

set方式注入:
依赖注入:set注入
依赖:bean对象的创建依赖容器
注入:bean对象中的所有属性,由容器注入

拓展方式注入

依赖注入之set注入

<?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-2.5.xsd">

<bean id="address" class="com.hupf.spring.demo.bean.Address"/>

<!---->
<bean id="user" class="com.hupf.spring.demo.bean.User">
    <!--第一种,普通值注入,直接使用value-->
    <property name="name" value="hupf"></property>
    <!--第二种,bean注入,使用ref-->
    <property name="address" ref="address"></property>
    <!--第三种,数组注入,-->
    <property name="books">
        <array>
            <value>红楼梦</value>
            <value>西游记</value>
            <value>水浒传</value>
            <value>三国演义</value>
        </array>
    </property>
    <!--第四种,list注入,-->
    <property name="hobbys">
        <list>
            <value>听歌</value>
            <value>玩游戏</value>
            <value>看电影</value>
        </list>
    </property>
    <!--第五种,map,-->
    <property name="cards">
        <map>
            <entry key="身份证" value="111"></entry>
            <entry key="银行卡" value="222"></entry>
        </map>
    </property>
    <!--第六种,set,-->
    <property name="games">
        <set>
            <value>lol</value>
            <value>97</value>
        </set>
    </property>
    <!--第八种,null,-->
    <property name="wife">
        <null></null>
    </property>\
    <!--第九种,properties,-->
    <property name="info">
        <props key="学号">001</props>
        <props key="性别">男</props>
        <props key="名字">小A</props>
    </property>
</bean>




</beans>

C命名空间和P命名空间注入

p命名空间:相当于java代码中的this
c命名空间:表示构造器某参数赋值

<?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:c="http://www.springframework.org/schema/c"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--p命名空间注入,可以直接注入属性的值:property-->
    <bean id="user" class="com.hupf.spring.demo.bean.User" p:name="hupf" p:age="3">
    </bean>

    <!--c命名空间注入,通过构造器注入:constructor-arg-->
    <bean id="user1" class="com.hupf.spring.demo.bean.User" c:age="10" c:name="hupf">
    </bean>

</beans>

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"
       xmlns:c="http://www.springframework.org/schema/c"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--单例模式:只有一个实例-->
    <bean id="user" class="com.hupf.spring.demo.bean.User" scope="singleton"></bean>

    <!--原型模式:多实例,每次从容器中获取都会产生新的对象-->
    <bean id="user1" class="com.hupf.spring.demo.bean.User" scope="prototype"></bean>

    <!--其余的request,session,application,这三个是在web中使用的-->
    
    
</beans>

自动装配bean

上述使用xml的属于手动装配

自动装配是spring满足bean依赖的一种方式
spring会再上下文(context)中自动寻找,并自动给bean装配

在spring中有三种装配的方式:
1.在xml中显示的配置
2.在java中显示配置
3.隐式的自动装配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"
       xmlns:c="http://www.springframework.org/schema/c"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="dog" class="com.hupf.spring.demo.bean.Dog"/>
    <bean id="dog1" class="com.hupf.spring.demo.bean.Dog"/>
    <bean id="cat" class="com.hupf.spring.demo.bean.Cat"/>
    <bean id="cat1" class="com.hupf.spring.demo.bean.Cat"/>

    <!--
    byname:会自动在容器上下文中查找,和自己对象set方法后面的值对应的bean id
    bytype:会自动在容器上下文中查找,和自己对象属性类型相同的bean
    -->

    <bean id="people" autowire="byName" class="com.hupf.spring.demo.bean.Person">
        <property name="name" value="招财"></property>
    </bean>

    ----------------------------------------------------------------

    <bean class="com.hupf.spring.demo.bean.Dog"/>
    <bean class="com.hupf.spring.demo.bean.Cat"/>

    <bean id="people1" autowire="byType" class="com.hupf.spring.demo.bean.Person">
        <property name="name" value="招财"></property>
    </bean>

</beans>

总结:
byname的时候,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致
bytype的时候,需要保证所有的class唯一,并且这个bean需要和自定注入的属性的类型一致

自动装配示例

@Data
@Component
public class User0 {
    @Value("10")
    private int id;
    @Value("hupengfei")
    private String name;
}
<?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:c="http://www.springframework.org/schema/c" 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">

    <!--开启注解的支持-->
    <context:annotation-config></context:annotation-config>

    <!--指定要扫描的包-->
    <context:component-scan base-package="com.hupf.ispring.bean"></context:component-scan>
    
</beans>
@Test
    public void test3(){
        AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext();
        applicationContext.register(User0.class);
        applicationContext.refresh();

        User0 user = (User0)applicationContext.getBean("user0");
        System.out.println(user.getName());
    }

注解实现自动装配

要使用注解须知:
1.导入约束
2.配置注解的支持

<!--开启注解的支持-->
<context:annotation-config>

@Autowired
在属性上导入即可,也可以在set方法上使用
使用Autowired我们可以不用编写set方法,前提是你这个自动装配的属性在IOC容器中存在,且符合名字byname

@Autowired(required=false)如果显示的定义了required为false,说名这个对象可以为null,默认是true
@NullAble 某字段标记了这个注解,说明这个字段可以为null

@Autowired默认的方式是bytype
@Autowired
@Qualifier(value=“bean id”)
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解完成的时候,我们可以使用@Qualifier(value=“XX”)去配置@Autowired的使用,指定一个唯一的bean对象注入

@Resource相当于@Autowired+@Qualifier(name)的功能

总结
@Resource和@Autowired的区别:
都是用来自动装配的,都可以放在属性字段上
@Autowired 通过bytype的方式实现,而且必须要求这个对象存在
@Resource默认通过byname的方式实现,如果找不到名字,则通过byType实现,如果两个都找不到的情况下,就会报错
执行顺序不同:
@Autowired 通过byType的方式实现
@Resource 默认byname,然后bytype

Spring注解开发

使用注解开发,必须要有aop的依赖

1.bean

<!--指定要扫描的包-->
<context:component-scan base-package="包名">

@Component (组件)放在类上,说明这个类被Spring管理了,就是bean
等价于

<bean id="user" class="com.hupf.demo.User"/>

2.属性如何导入

@Component //等价于<bean id="user" class="com.hupf.demo.User">
public class User{
	
	public String name;	
	
	@Value("hupf")// 等价于<property name="name" value="hupf">
	public void setName(String name){
		this.name = name;
	}

}

3.衍生注解
@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层
dao【@Repository】
service【@Service】
controller【@Controller】
这四个注解功都是一样的,都是代表将某个类注册到Spring中,装配bean

4.自动装配
@Autowired

5.作用域

@Component
@Scope("prototype")
public class User{
}

6.总结:
xml与注解:
xml更加万能,使用于任何场合,维护简单
注解 不是自己类使用不了,维护相对复杂
xml与注解最佳实践:
xml用来管理bean
注解只负责完成属性注入
我们在使用的过程中,只需要注意一个问题:必须让注解生效,就需要开启注解的支持

<context:component-scan base-package="xx.xx"/>
<context:annotation-config/>

使用javaConfig实现配置

使用java配置Spring,完全代替xml,全权交给java做
javaConfig是Spring的一个子项目,在Spring4之后,成为核心功能

@Configuration //这个也会被spring容器托管,注册到容器中,因为他本身就是一个@Component,@Configuration代表这是一个配置类,就和我们之前看的application.xml是一样的
@ComponentScan("XX.XX")
@Import(xx.class)
public class NyConfig{

	@Bean //注册一个bean,就相当于我们之前写的一个bean标签
	//这个方法的名字,就想当于application.xml中的bean的id属性
	//这个方法的返回值,就相当于bean标签中的class属性
	public User getUser(){
		return new User();
	}

}
public class Run {
    public static void main(String[] args) {
        ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
        User user = context.getBean("getUser", User.class);
        
    
    }
}

这种纯java的配置方式,在springboot中随处可见

静态代理模式

房产中介:一个很鲜明的代理模式的例子
AOP的底层就是代理模式

代理模式的分类:

  • 静态代理
  • 角色分析
  • 抽象角色:一般会使用接口或者抽象类来解决
  • 真实角色:被代理角色
  • 代理角色:代理真实角色,代理真实角色后,我们一般会做一些附属操作
  • 客户:访问代理对象的人
  • 动态代理
// 租房
public interface Rent {
    public void rent();
}
// 房东
public class Host implements Rent{
    @Override
    public void rent() {
        System.out.println("房东要出租");
    }
}
// 代理
public class Proxy {

    private Host host;

    public Proxy() {
    }

    public Proxy(Host host) {
        this.host = host;
    }

    public void rent(){
        host.rent();
    }

    // 看房
    public void seehouse(){
        System.out.println("中介带看");
    }

    // 收中介费
    public void fare(){
        System.out.println("中介收费");
    }

}
// 房客
public class Client {

    public static void main(String[] args) {
        // 代理角色,中介,有多个方法,其中租房的方法调用的是房东的方法
        Proxy proxy = new Proxy(new Host());
        proxy.rent();
    }

}

代理模式的好处:
可以使真实角色的操作更加纯粹,不用关注一些公共的业务
公共业务交给代理角色,实现业务的分工
公共业务发生拓展的时候,方便集中管理
缺点:
一个真实角色会产生一个代理角色,代码量翻倍

动态代理详解

动态代理和静态代理角色是相同的
动态代理的代理类是动态生成的,不是我们写好的
动态代理分为两大类:基于接口的动态代理,基于类的动态代理
基于接口----JDK动态代理
基于类----cglib
学习JDK动态代理需要了解两个类:Proxy,IvocationHandler

IvocationHandler接口:

// 租房
public interface Rent {
    public void rent();
}
// 房东
public class Host implements Rent{
    @Override
    public void rent() {
        System.out.println("房东要出租");
    }
}
//用这个类自动生成代理类
public class ProxyInvocationhandler implements InvocationHandler {
    // 被代理的接口
    private Rent rent;

    public void setRent(Rent rent) {
        this.rent = rent;
    }

    // 生成得到代理类
    public Object getProxy(Rent rent){
        return Proxy.newProxyInstance(
        		this.getClass().getClassLoader(), 
        		rent.getClass().getInterfaces(), 
        		this);
    }

    // 处理代理实例,并返回结构
    @Override
    public Object invoke(Object proxy, Method method, 
    	Object[] args) throws Throwable {
        // 动态代理的本质,就是使用反射机制实现
        Object invoke = method.invoke(rent, args);
        return invoke;
    }
}
// 房客
public class Client {
    public static void main(String[] args) {
        // 真实角色
        Host host = new Host();
        // 代理角色:现在没有
        ProxyInvocationhandler pih = new ProxyInvocationhandler();
        // 通过调用程序处理角色来处理我们想要的接口对象
        pih.setRent(host);
        Rent proxy = (Rent) pih.getProxy();// 这里的proxy就是动态代理
        proxy.rent();
    }
}

可以改写成万能的代码方法

//用这个类自动生成代理类
public class ProxyInvocationhandler implements InvocationHandler {
    // 被代理的接口
    private Object rent;

    public void setRent(Object rent) {
        this.rent = rent;
    }

    // 生成得到代理类
    public Object getProxy(){
        return Proxy.newProxyInstance(this.getClass().getClassLoader(), rent.getClass().getInterfaces(), this);
    }

    // 处理代理实例,并返回结构
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        // 动态代理的本质,就是使用反射机制实现
        Object invoke = method.invoke(rent, args);
        return invoke;
    }
}

动态代理的好处:
静态代理的好处全有
一个动态代理类可以代理多个类,只要是实现了同一个接口即可

AOP实现方式一

AOP:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术(Aspect Oriented programming)

提供声明式事务:允许用户自定义切面
横切关注点:跨越应用程序多个模块的方法或功能。即使与我们业务逻辑无关,但是我们需要关注的部分,就是横切关注点,如日志,安全,事务等。。。
切面(Aspect):横切关注点被模块化的特殊对象。即,他是一个类
通知(Advice):切面必须要完成的工作。即,他是类中的一个方法
目标(Target):被通知对象
代理(Proxy):向目标对象应用通知之后创建的对象
切入点(PointCut):切面通知执行的“地点”的定义
连接点(jointPoint):与切入点匹配的执行点

Spring AOP中支持的5中类型Advice:
前置通知,后置通知,环绕通知,异常抛出通知,引介通知

使用AOP必须要导入的包

<!-- aspectj依赖 -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>1.9.4</version>
        </dependency>

方式一:使用Spring的API接口,也就是xml配置文件的方式【主要是SpringAPI接口实现】

public interface UserSerivice {

    public void add();
    public void delete();
    public void update();
    public void query();

}
public class UserServiceImpl implements UserSerivice {

    @Override
    public void add() {
        System.out.println("增加了一个用户");
    }

    @Override
    public void delete() {
        System.out.println("删除了一个用户");
    }

    @Override
    public void update() {
        System.out.println("修改了一个用户");
    }

    @Override
    public void query() {
        System.out.println("查询了一个用户");
    }
}
public class Log implements MethodBeforeAdvice {
    // method 要执行的目标对象的方法
    // args 参数
    // target 目标对象

    @Override
    public void before(Method method, Object[] objects, Object o) throws Throwable {
        System.out.println(o.getClass().getName()+"的"+method.getName()+"被执行了");
    }
}
public class AfterLog implements AfterReturningAdvice {
    // renturnValue 返回值
    @Override
    public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
        System.out.println("执行了"+method.getName()+"方法,返回结果为:"+o);
    }
}
public class Run {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
        // 动态代理 代理的是接口:注意点
        UserSerivice userService = (UserSerivice) context.getBean("userService");
        userService.add();
    }
}
<?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: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/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <bean id="userService" class="com.hupf.spring.demo.UserServiceImpl"></bean>
    <!-- 想要在切入点运行之前运行的方法 -->
    <bean id="log" class="com.hupf.spring.demo.Log"></bean>
    <!-- 想要在切入点运行之后运行的方法 -->
    <bean id="afterLog" class="com.hupf.spring.demo.AfterLog"></bean>


    <!--方式一:使用原生Spring API接口-->
    <!--配置AOP:需要导入aop的约束-->
    <aop:config>
        <!--切入点:expression:表达式 execution(要执行的位置! ****) -->
        <aop:pointcut id="pointcut" expression="execution(* com.hupf.spring.demo.UserServiceImpl.*(..))"></aop:pointcut>

		<!-- 执行环绕增加 -->
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"></aop:advisor>
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"></aop:advisor>
    </aop:config>
		<!-- 配置是相同的,那么Spring是怎么分辨谁是前置通知、谁是后置通知呢?是根据log方法和afterLog方法分别实现的接口来分辨 -->



</beans>

AOP实现方式二

方式二:使用自定义类方式实现【主要是切面定义】

public interface UserSerivice {

    public void add();
    public void delete();
    public void update();
    public void query();

}
public class UserServiceImpl implements UserSerivice {

    @Override
    public void add() {
        System.out.println("增加了一个用户");
    }

    @Override
    public void delete() {
        System.out.println("删除了一个用户");
    }

    @Override
    public void update() {
        System.out.println("修改了一个用户");
    }

    @Override
    public void query() {
        System.out.println("查询了一个用户");
    }
}
public class DiyPointCut {

    public void before(){
        System.out.println("=============before==============");

    }


    public void after(){
        System.out.println("=============after==============");

    }
}
public class Run {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
        // 动态代理 代理的是接口:注意点
        UserSerivice userService = (UserSerivice) context.getBean("userService");
        userService.add();
    }
}
<?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: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/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <bean id="userService" class="com.hupf.spring.demo.UserServiceImpl"></bean>
    <bean id="log" class="com.hupf.spring.demo.Log"></bean>
    <bean id="afterLog" class="com.hupf.spring.demo.AfterLog"></bean>


    <!--方式二:自定义类-->
    <bean id="diy" class="com.hupf.spring.demo.DiyPointCut">

        <aop:config>
            <!--自定义切面,ref 要引用的类-->
            <aop:aspect ref="diy">
                <!--切入点-->
                <aop:pointcut id="point" expression="execution(* com.hupf.spring.demo.UserServiceImpl)"></aop:pointcut>
                <!--通知-->
                <aop:before method="before" pointcut-ref="point"></aop:before>
                <aop:before method="after" pointcut-ref="point"></aop:before>
            </aop:aspect>
        </aop:config>

    </bean>



</beans>

注解实现AOP

方式三:使用注解实现

public interface UserSerivice {

    public void add();
    public void delete();
    public void update();
    public void query();

}
public class UserServiceImpl implements UserSerivice {

    @Override
    public void add() {
        System.out.println("增加了一个用户");
    }

    @Override
    public void delete() {
        System.out.println("删除了一个用户");
    }

    @Override
    public void update() {
        System.out.println("修改了一个用户");
    }

    @Override
    public void query() {
        System.out.println("查询了一个用户");
    }
}
// 方式三:使用注解方式
@Aspect //标注这个类是一个切面
public class AnnotationPointCut {

    @Before("execution(* com.hupf.spring.demo.UserServiceImpl.*(..))")
    public void before(){
        System.out.println("=====方法执行前======");
    }

    @After("execution(* com.hupf.spring.demo.UserServiceImpl.*(..))")
    public void after(){
        System.out.println("=====方法执行后======");
    }

    // 在环绕增强中,我们可以给定一个参数,代表我们要获取处理切入的点
    @Around("execution(* com.hupf.spring.demo.UserServiceImpl.*(..))")
    public void around(ProceedingJoinPoint jp) throws Throwable {
        System.out.println("=====环绕前======");
        // 执行方法
        Object proceed = jp.proceed();
        System.out.println("=====环绕后======");
    }

}
public class Run {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
        // 动态代理 代理的是接口:注意点
        UserSerivice userService = (UserSerivice) context.getBean("userService");
        userService.add();
    }
}
<?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: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/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <bean id="userService" class="com.hupf.spring.demo.UserServiceImpl"></bean>
    <bean id="log" class="com.hupf.spring.demo.Log"></bean>
    <bean id="afterLog" class="com.hupf.spring.demo.AfterLog"></bean>


    <!--方式三-->
    <bean id="annotationPointCut" class="com.hupf.spring.demo.AnnotationPointCut"></bean>
    <!--开启注解方式   JDK  cglib-->
    <aop:aspectj-autoproxy></aop:aspectj-autoproxy>


</beans>

回顾MyBatis

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.hupf</groupId>
    <artifactId>spring-demo</artifactId>
    <version>1.0-SNAPSHOT</version>


    <properties>
        <org.springframework.version>4.3.19.RELEASE</org.springframework.version>
        <commons-logging.version>1.2</commons-logging.version>
        <junit.version>4.12</junit.version>
    </properties>

    <dependencies>
        <!-- Spring核心依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring beans包-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring 容器包 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring容器依赖包,将第三方库整合进Spring应用上下文,提供支持 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring aop依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring aspects依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- aspectj依赖 -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>1.9.4</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.47</version>
        </dependency>

        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.2</version>
        </dependency>

        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.2</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.2.6.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>5.2.6.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>2.0.2</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.16</version>
        </dependency>

    </dependencies>


</project>

回忆myBatis
1.编写实体类
2.编写核心配置文件
3.编写接口
4.编写Mapper.xml
5.测试

整合MyBatis方式一

MyBatis-Spring
1.编写数据源配置
2.sqlSessionFactory
3.sqlSessionTemplate
4.需要给接口加实现类
5.将自己写的实现类,注入到Spring中
6.测试使用即可

@Data
public class User {

    private int id;
    private String name;
    private String pwd;

}
public interface UserMapper {

    public List<User> selectUser();
}
public class UserMapperImpl implements UserMapper {

    // 我们的所有操作,都使用sqlSession来执行,现在我们使用SqlSessionTemplate
    private SqlSessionTemplate sqlSession;

    public void setSqlSession(SqlSessionTemplate sqlSession) {
        this.sqlSession = sqlSession;
    }

    @Override
    public List<User> selectUser() {
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        List<User> users = mapper.selectUser();
        return users;
    }
}
public class Run {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("application.xml");
        UserMapper userMapper = context.getBean("userMapper", UserMapper.class);
        List<User> users = userMapper.selectUser();
    }
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">

<mapper namespace="com.hupf.spring.demo.UserMapper">

    <select id="selectUser" resultType="User">
        select * from mybatis.user;
    </select>

</mapper>
<?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: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/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--DataSource:使用Spring的数据源替换Mybatis的配置-->
    <bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"></property>
        <property name="username" value="root"></property>
        <property name="password" value="admin"></property>
    </bean>

    <!--sqlSessionFactory-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="datasource"></property>
        <property name="configLocation" value="classpath:MyBatis-config.xml"></property>
        <property name="mapperLocations" value="classpath:application.xml"></property>
    </bean>

    <!--SqlSessionTemplate 就是我们使用的SqlSession-->
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <constructor-arg index="0" ref="sqlSessionFactory"></constructor-arg>
    </bean>

    <bean id="userMapper" class="com.hupf.spring.demo.UserMapperImpl">
        <property name="sqlSession" ref="sqlSession"></property>
    </bean>

</beans>
<?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE configuration
                PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
                "http://mybatis.org/mybatis-3-config.dtd">

<configuration>

<typeAliases>
    <package name="com.hupf.spring.demo"></package>
</typeAliases>

<environments default="development">
    <environment id="development">
        <transactionManager type="JDBC"></transactionManager>
        <dataSource type="POOLED">
            <property name="driver" value="com.mysql.jdbc.Driver"></property>
            <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL"></property>
            <property name="username" value="root"></property>
            <property name="password" value="123456"></property>
        </dataSource>
    </environment>
</environments>

</configuration>

整合MyBatis方式二

public class UserMapperImpl extends SqlSessionDaoSupport implements UserMapper {

    // 继承了SqlSessionDaoSupport这个类,就可以不需要注入SqlSessionTemplate了
    
//    // 我们的所有操作,都使用sqlSession来执行,现在我们使用SqlSessionTemplate
//    private SqlSessionTemplate sqlSession;
//
//    public void setSqlSession(SqlSessionTemplate sqlSession) {
//        this.sqlSession = sqlSession;
//    }

    @Override
    public List<User> selectUser() {
//        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
//        List<User> users = mapper.selectUser();
//        return users;
        
        return getSqlSession().getMapper(UserMapper.class).selectUser();
    }
}
<?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: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/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--DataSource:使用Spring的数据源替换Mybatis的配置-->
    <bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"></property>
        <property name="username" value="root"></property>
        <property name="password" value="admin"></property>
    </bean>

    <!--sqlSessionFactory-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="datasource"></property>
        <property name="configLocation" value="classpath:MyBatis-config.xml"></property>
        <property name="mapperLocations" value="classpath:application.xml"></property>
    </bean>

    <!--SqlSessionTemplate 就是我们使用的SqlSession-->
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <constructor-arg index="0" ref="sqlSessionFactory"></constructor-arg>
    </bean>

    <!--<bean id="userMapper" class="com.hupf.spring.demo.UserMapperImpl">
        <property name="sqlSession" ref="sqlSession"></property>
    </bean>-->

	<!--这种需要导入sqlSessionFactory-->
    <bean id="userMapper2" class="com.hupf.spring.demo.UserMapperImpl">
        <property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
    </bean>


</beans>

建议初学者使用第一种方式,加强对MyBatis的理解,真正在公司使用会使用方式二或者MyBatis-plus插件,这样会更加简化代码

事务回顾

声明式事务
把一组业务当作一个业务来做,要么都成功,要么都失败
事务在项目开发中十分的重要,涉及到数据的一致性问题,不能马虎
确保完整性和一致性

事务ACID原则:
原子性
一致性
隔离性:多个业务可能操作同一资源,防止数据损坏
持久性:事务一旦提交,无论系统发生什么问题,结果都不会再被影响,被持久化的写到存储器中

Spring声明式事物

Spring中的事务管理
声明式事务:AOP
编程式事务:需要在代码中,进行事务的管理

MyBatis默认是不开启事务

<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/cache"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/tx
        https://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/cache
        http://www.springframework.org/schema/cache/spring-cache.xsd">

    <!--DataSource:使用Spring的数据源替换Mybatis的配置-->
    <bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"></property>
        <property name="username" value="root"></property>
        <property name="password" value="admin"></property>
    </bean>

    <!--sqlSessionFactory-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="datasource"></property>
        <property name="configLocation" value="classpath:MyBatis-config.xml"></property>
        <property name="mapperLocations" value="classpath:application.xml"></property>
    </bean>

    <!--SqlSessionTemplate 就是我们使用的SqlSession-->
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <constructor-arg index="0" ref="sqlSessionFactory"></constructor-arg>
    </bean>

    <!--<bean id="userMapper" class="com.hupf.spring.demo.UserMapperImpl">
        <property name="sqlSession" ref="sqlSession"></property>
    </bean>-->

    <bean id="userMapper2" class="com.hupf.spring.demo.UserMapperImpl">
        <property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
    </bean>


    <!-- 配置声明式事务管理 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" value="dataSource"></property>
    </bean>

    <!-- 结合AOP实现事务的织入 -->
    <!-- 配置事务通知 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <!-- 给哪些方法配置事务 -->
        <!-- 配置事务的传播特性 -->
        <tx:attributes>
            <!-- propagation传播特性 REQUIRED表示支持当前事务,如果没有事务就新建一个事务,Spring中默认选择这个 -->
            <tx:method name="add" propagation="REQUIRED"></tx:method>
            <tx:method name="delete" propagation="REQUIRED"></tx:method>
            <tx:method name="update" propagation="REQUIRED"></tx:method>
            <tx:method name="query" read-only="true"></tx:method>
            <tx:method name="*"></tx:method>
        </tx:attributes>
    </tx:advice>
    
    <!-- 配置事务切入-->
    <aop:config>
        <!--切入点-->
        <aop:pointcut id="txPointCut" expression="execution(* com.hupf.spring.demo.*.*(..))"></aop:pointcut>
        <!--切入到哪里-->
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"></aop:advisor>
        
    </aop:config>


</beans>

将事务通过AOP的方式配置到程序中,不需要修改程序中的代码,只需要添加配置即可

为什么需要事务:
如果不配置事务,可能存在数据提交不一致的情况
如果我们不在Spring中去配置声明式事务,我们就需要在代码中配置事务
事务在项目开发中十分重要,涉及到数据的一致性和完整性

总结

Spring理念:使现有的技术更加容易使用,本身是一个大杂烩,整合了现有的技术框架

Spring的优点:
Spring是一个开源的免费的框架
Spring是一个轻量级、非入侵式的框架
控制反转(IOC),面向切面编程(AOP)
支持事务的处理,对框架整合的支持

Spring就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架

IOC本质:IOC是一种设计思想,DI是实现IOC的一种方式

注入方式主要式构造方法注入和set注入

自动装配
@Autowired 默认式byType,可以配置@Qualifier(value=“name”)这样可以变成byType+byname
@Resource
@Configuration
@ComponentScan
@Import
@Bean

狂神说 Spring 上课笔记

狂神说Spring01:概述及IOC理论推导

狂神说Spring02:快速上手Spring

狂神说Spring03:依赖注入(DI)

狂神说Spring04:自动装配

狂神说Spring05:使用注解开发

狂神说Spring06:静态/动态代理模式

狂神说Spring07:AOP就这么简单

狂神说Spring08:整合MyBatis

狂神说Spring09:声明式事务

未完待续

后续想要整理一下Spring中的常用注解