【Spring】【狂神说】学习笔记

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配置文件


<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="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导入依赖


<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.0modelVersion>

    <groupId>com.hupfgroupId>
    <artifactId>spring-demoartifactId>
    <version>1.0-SNAPSHOTversion>


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

    <dependencies>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-coreartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-beansartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-contextartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-context-supportartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-aopartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-aspectsartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.aspectjgroupId>
            <artifactId>aspectjrtartifactId>
            <version>1.9.4version>
        dependency>
    dependencies>


project>

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

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

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

IOC创建对象的方式

对象配置到xml配置文件,spring的底层也是通过new的方式创建的对象
1.使用无参构造创建对象是默认的方式
2.使用有参构造创建对象有三种方式


<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的配置:


<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注入


<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">
    
    <property name="name" value="hupf">property>
    
    <property name="address" ref="address">property>
    
    <property name="books">
        <array>
            <value>红楼梦value>
            <value>西游记value>
            <value>水浒传value>
            <value>三国演义value>
        array>
    property>
    
    <property name="hobbys">
        <list>
            <value>听歌value>
            <value>玩游戏value>
            <value>看电影value>
        list>
    property>
    
    <property name="cards">
        <map>
            <entry key="身份证" value="111">entry>
            <entry key="银行卡" value="222">entry>
        map>
    property>
    
    <property name="games">
        <set>
            <value>lolvalue>
            <value>97value>
        set>
    property>
    
    <property name="wife">
        <null>null>
    property>\
    
    <property name="info">
        <props key="学号">001props>
        <props key="性别">props>
        <props key="名字">小Aprops>
    property>
bean>




beans>

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

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


<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" p:name="hupf" p:age="3">
    bean>

    
    <bean id="user1" class="com.hupf.spring.demo.bean.User" c:age="10" c:name="hupf">
    bean>

beans>

bean的作用域


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

    
    
    
beans>

自动装配bean

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

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

在spring中有三种装配的方式:
1.在xml中显示的配置
2.在java中显示配置
3.隐式的自动装配bean【重点】


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

    

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

<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 //等价于
public class User{
	
	public String 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必须要导入的包


        <dependency>
            <groupId>org.aspectjgroupId>
            <artifactId>aspectjrtartifactId>
            <version>1.9.4version>
        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();
    }
}

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


    
    
    <aop:config>
        
        <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>
		



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();
    }
}


<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>
            
            <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();
    }
}

<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>
    
    <aop:aspectj-autoproxy>aop:aspectj-autoproxy>


beans>

回顾MyBatis


<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.0modelVersion>

    <groupId>com.hupfgroupId>
    <artifactId>spring-demoartifactId>
    <version>1.0-SNAPSHOTversion>


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

    <dependencies>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-coreartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-beansartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-contextartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-context-supportartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-aopartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-aspectsartifactId>
            <version>${org.springframework.version}version>
        dependency>
        
        <dependency>
            <groupId>org.aspectjgroupId>
            <artifactId>aspectjrtartifactId>
            <version>1.9.4version>
        dependency>
        <dependency>
            <groupId>junitgroupId>
            <artifactId>junitartifactId>
            <version>4.13version>
        dependency>

        <dependency>
            <groupId>mysqlgroupId>
            <artifactId>mysql-connector-javaartifactId>
            <version>5.1.47version>
        dependency>

        <dependency>
            <groupId>org.mybatisgroupId>
            <artifactId>mybatisartifactId>
            <version>3.5.2version>
        dependency>

        <dependency>
            <groupId>org.mybatisgroupId>
            <artifactId>mybatisartifactId>
            <version>3.5.2version>
        dependency>

        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-webmvcartifactId>
            <version>5.2.6.RELEASEversion>
        dependency>

        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-jdbcartifactId>
            <version>5.2.6.RELEASEversion>
        dependency>

        <dependency>
            <groupId>org.mybatisgroupId>
            <artifactId>mybatis-springartifactId>
            <version>2.0.2version>
        dependency>

        <dependency>
            <groupId>org.projectlombokgroupId>
            <artifactId>lombokartifactId>
            <version>1.18.16version>
        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();
    }
}

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>

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

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

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

        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 users = mapper.selectUser();
//        return users;
        
        return getSqlSession().getMapper(UserMapper.class).selectUser();
    }
}


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

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

    
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <constructor-arg index="0" ref="sqlSessionFactory">constructor-arg>
    bean>

    

	
    <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默认是不开启事务


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

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

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

    
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <constructor-arg index="0" ref="sqlSessionFactory">constructor-arg>
    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>

    
    
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        
        
        <tx:attributes>
            
            <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中的常用注解

你可能感兴趣的:(视频学习笔记,spring)