Spring

Spring

聊聊Spring

简介

  • Spring:春天(给软件行业带来了春天)
  • 2002,首次推出了Spring框架的雏形:interface21框架
  • Spring框架即以interface21框架为基础,经过重新设计,并不断丰富其内涵,与2004年3月24日发布了1.0正式版
  • Rod Johnson,Spring Framework创始人,著名作者。很难想象Rod Johnson的学历,真的让很多人大吃一惊,他是悉尼大学的博士,然而他的专业并不是计算机,而是音乐学
  • Spring理念:使现有的技术更加容易使用,本身是一个大杂烩,整合了现有的技术框架
  • SSH:Struct2 + Spring + Hibernate
  • SSM:SpringMVC + Spring + MyBatis

优点

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

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

组成

img

拓展

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

因为现在大多数公司都在使用SpringBoot进行快速开发,学习SpringBoot的前提,需要完全掌握Spring及SpringMVC!承上启下的作用!

弊端:发展了太久之后,违背了原来的理念!配置十分繁琐,人称:“配置地狱”

IOC理论推导

  1. UserDao接口
  2. UserDaoImpl实现类
  3. UserService业务接口
  4. UserServiceImpl业务实现类

在我们之前的业务中,用户的需求可能会影响我们原来的代码,我们需要根据用户的需求去修改源代码!如果程序代码量十分大,修改一次的成本代价十分昂贵!

我们使用一个set接口实现,已经发生了革命性的变化!

private UserDao userDao;

public void setUserDao(UserDao userDao) {
    this.userDao = userDao;
}
  • 之前,程序是主动创建对象,控制权在程序员手上
  • 使用了set注入之后,程序不再具有主动性,而是变成了被动的接受对象

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

IOC本质

控制反转IOC(Inversion of Control),是一种设计思想,DI(依赖注入)是实现IOC的一种方法,也有人认为DI只是IOC的另一种说法。没有IOC的程序中,我们使用面向对象编程,对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建的转移给第三方,个人认为所谓控制反转就是:获得依赖对象的方式反转了。

采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。

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

HelloSpring

Hello类(Bean)

package org.example.domain;

import lombok.Data;

@Data
public class Hello {
    private String name;

    public void show(){
        System.out.println("hello "+name);
    }
}

配置文件beans.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
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--使用Spring来创建对象,在Spring中这些都称为Bean
    类型 变量名=new 类型();
    Hello hello=new Hello();
    id=变量名
    class=new的对象
    property相当于给对象中的属性设置一个值-->
    <bean id="hello" class="org.example.domain.Hello">
        <property name="name" value="spring"/>
    </bean>

</beans>

测试类(HelloTest)

package org.example.domain;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class HelloTest {

    @Test
    public void testHello(){
        //获取Spring的上下文对象
        ApplicationContext applicationContext=new ClassPathXmlApplicationContext("beans.xml");
        //我们的对象都在Spring的IOC容器中,我们要使用,直接去里面取出来就可以
        Hello hello = applicationContext.getBean(Hello.class);

        hello.show();
    }
}

IOC创建对象的方式

  1. 使用无参构造创建对象,默认!

  2. 假设我们要使用有参构造创建对象

    1. 下标赋值
    <!--第一种:下标赋值-->
    <bean id="hello" class="org.example.domain.Hello">
        <constructor-arg index="0" value="spring"/>
    </bean>
    
    1. 类型赋值
    <!--第二种:通过类型赋值,不建议使用-->
    <bean id="hello" class="org.example.domain.Hello">
        <constructor-arg type="java.lang.String" value="spring"/>
    </bean>
    
    1. 参数名赋值
    <!--第三种:通过参数名赋值-->
    <bean id="hello" class="org.example.domain.Hello">
        <constructor-arg name="name" value="spring"/>
    </bean>
    

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

Spring配置

别名

<bean id="hello" class="org.example.domain.Hello">
    <constructor-arg name="name" value="spring"/>
</bean>

<!--别名-->
<alias name="hello" alias="myHello"/>

Bean的配置

<!--
    id: Bean的唯一标识符,相当于对象名
    class: Bean对象的全限定类名(包名+类型)
    name: 也是别名,而且name可以同时设置多个别名-->
<bean id="hello" class="org.example.domain.Hello" name="myHello,youHello">
    <property name="name" value="spring"/>
</bean>

import

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

依赖注入

构造器注入

set方式注入(重点)

  • 依赖注入:set注入
    • 依赖:Bean对象的创建依赖于容器
    • 注入:Bean对象中的所有属性,由容器来注入

给复杂对象的属性赋值

package org.example.domain;

import lombok.Data;

@Data
public class Address {
    private String address;
}
package org.example.domain;

import lombok.Data;
import lombok.ToString;

import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;

@Data
@ToString
public class Student {
    private String name;
    private Address address;
    private String[] courses;
    private List<String> hobbys;
    private Map<Integer,String> tasks;
    private Set<String> games;
    private Properties info;
    private String wife;
}

配置文件

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

    <bean id="address" class="org.example.domain.Address">
        <property name="address" value="河南省"/>
    </bean>
    <bean id="student" class="org.example.domain.Student">
        <!--普通类型注入-->
        <property name="name" value="柿子"/>
        <!--对象类型注入-->
        <property name="address" ref="address"/>
        <!--数组注入-->
        <property name="courses">
            <array>
                <value>英语</value>
                <value>高等数学</value>
                <value>概率论</value>
                <value>线性代数</value>
            </array>
        </property>
        <!--list集合注入-->
        <property name="hobbys">
            <list>
                <value>音乐</value>
                <value>游戏</value>
                <value>影视</value>
                <value>运动</value>
            </list>
        </property>
        <!--map集合注入-->
        <property name="tasks">
            <map>
                <entry key="1" value="java"/>
                <entry key="2" value="javaweb"/>
                <entry key="3" value="spring"/>
                <entry key="4" value="springcloud"/>
            </map>
        </property>
        <!--set集合注入-->
        <property name="games">
            <set>
                <value>王者荣耀</value>
                <value>英雄联盟</value>
                <value>和平精英</value>
            </set>
        </property>
        <!--null注入-->
        <property name="wife">
            <null/>
        </property>
        <!--properties注入-->
        <property name="info">
            <props>
                <prop key="id">191451080630</prop>
                <prop key="name">张三</prop>
                <prop key="gender">男</prop>
                <prop key="age">21</prop>
            </props>
        </property>
    </bean>

</beans>

测试类

@Test
public void testBean(){
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    Student student = context.getBean(Student.class);
    /*System.out.println(student.getName());
        System.out.println(student.getAddress());*/
    System.out.println(student.toString());
}

其他方式注入

p命名空间注入

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--p命名空间注入,可以直接注入属性的值:properties-->
    <bean id="user" class="org.example.domain.User" p:name="张三" p:gender="男" p:age="21"/>

</beans>

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

    <!--c命名空间注入,通过构造器注入:construct-args-->
    <bean id="user2" class="org.example.domain.User" c:name="李四" c:gender="男" c:age="25"/>
    
</beans>

注意:p命名空间和c命名空间不能直接使用,需要导入xml约束

xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"

Bean的作用域

下面是Spring官方文档的说明:

Scope Description
singleton (Default) Scopes a single bean definition to a single object instance for each Spring IoC container.
prototype Scopes a single bean definition to any number of object instances.
request Scopes a single bean definition to the lifecycle of a single HTTP request. That is, each HTTP request has its own instance of a bean created off the back of a single bean definition. Only valid in the context of a web-aware Spring ApplicationContext.
session Scopes a single bean definition to the lifecycle of an HTTP Session. Only valid in the context of a web-aware Spring ApplicationContext.
application Scopes a single bean definition to the lifecycle of a ServletContext. Only valid in the context of a web-aware Spring ApplicationContext.
websocket Scopes a single bean definition to the lifecycle of a WebSocket. Only valid in the context of a web-aware Spring ApplicationContext.
  1. 单例模式(Spring默认机制)
<!--单例模式-->
<bean id="user" class="org.example.domain.User" scope="singleton">
    <property name="name" value="张三"/>
    <property name="gender" value="男"/>
    <property name="age" value="21"/>
</bean>
  1. 原型模式(每次从容器中get的时候,都会产生一个新对象)
<!--原型模式-->
<bean id="user" class="org.example.domain.User" scope="prototype">
    <property name="name" value="张三"/>
    <property name="gender" value="男"/>
    <property name="age" value="21"/>
</bean>
  1. 其余的request、session、application这些个只能在web开发中使用到

Bean的自动装配

  • 自动装配是Spring满足bean依赖一种方式
  • Spring会在上下文中自动寻找,并自动给bean装配属性

在Spring中有三种装配的方式

  1. 在xml中显示的配置
  2. 在java中显示配置
  3. 隐式的自动装配bean(重要)

byName自动装配

<bean id="dog" class="org.example.domain.Dog"/>
<bean id="cat" class="org.example.domain.Cat"/>
<!--byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanid-->
<bean id="person" class="org.example.domain.Person" autowire="byName">
    <property name="name" value="小智"/>
</bean>

byType自动装配

<bean id="dog" class="org.example.domain.Dog"/>
<bean id="cat" class="org.example.domain.Cat"/>
<!--byType:会自动在容器上下文中查找和自己对象属性类型相同的bean-->
<bean id="person" class="org.example.domain.Person" autowire="byType">
    <property name="name" value="小智"/>
</bean>

小结:

  • byName:需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致
  • byType:需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的类型一致

使用注解实现自动装配

jdk1.5开始支持注解,Spring2.5就支持注解了

要使用注解须知:

  1. 导入约束
<?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:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        https://www.springframework.org/schema/context/spring-context.xsd">
    
</beans>
  1. 配置注解的支持
<context:annotation-config/>

@Autowired

直接在属性上使用即可,也可以在set方式上使用

使用Autowired我们可以不用编写set方法了,前提是你这个自动装配的属性IOC容器中存在,且符合byName或byType

科普:

@Nullable 字段标记了这个注解,说明这个字段可以为null
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package org.springframework.beans.factory.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Autowired {
    //如果显式定义了Autowired的required属性未false,说明这个对象可以为null,否则不允许为空
    boolean required() default true;
}

@Resource

package org.example.domain;

import lombok.Data;
import lombok.ToString;
import org.springframework.beans.factory.annotation.Autowired;

import javax.annotation.Resource;

@Data
@ToString
public class Person {
    private String name;
    //如果显式定义了Autowired的required属性未false,说明这个对象可以为null,否则不允许为空
    @Autowired(required = false)
    private Dog dog;
    //在IOC容器中查找Cat类型,name为cat2的bean,并自动装配
    @Resource(name = "cat2")
    private Cat cat;
}

小结:

如果有两个同类型的bean,@Autowired无法自动装配,如果要自动装配需要结合@Qualifier注解指定注入bean的id

@Resource相当于@Autowired和@Qualifier注解的集合,可以直接指定注入bean的id

使用注解开发

配置文件

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

    <!--指定要扫描的包,这个包下的注解就会生效-->
    <context:component-scan base-package="org.example.domain"/>
    <!--开启注解支持-->
    <context:annotation-config/>

</beans>

将类注入到IOC容器中

@Component//等价于<bean id="" class=""/>
public class User{}

@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层

  • dao:@Repository
  • service:@Service
  • controller:@Controller

这四个注解的作用都是一样的,都是将某个类注入到IOC容器中

给类中的属性赋值

@Value("张三")//等价于<property name="" value=""/>
private String name;

作用域

//单例模式
@Scope("singleton")//等价于<bean scope="singleton"/>
public class User{}

小结:

xml与注解:

- xml更加万能,适用于任何场合,维护简单方便
- 注解:不是自己的类不能使用,维护相对复杂

xml与注解最佳实践:

- xml用来管理bean
- 注解只负责完成属性的注入
- 我们在使用的过程中,只需要注意一个问题:必须让注解生效,就需要开启注解的支持

使用java的方式配置Spring

我们现在要完全不使用Spring的xml配置了,全权交给Java来做

JavaConfig是Spring的一个子项目,在Spring 4之后,它成为了一个核心功能

User类

package org.example.domain;

import lombok.Data;
import lombok.ToString;
import org.springframework.stereotype.Component;

@Data
@ToString
@Component
public class User {
    private String name;
    private String gender;
    private int age;
}

配置类

package org.example.config;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan("org.example")
public class SpringConfig {

}

测试类

package org.example.domain;

import org.example.config.SpringConfig;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = SpringConfig.class)
public class UserTest {

    @Autowired
    private User user;

    @Test
    public void test(){
        user.setName("张三");
        user.setGender("男");
        user.setAge(21);
        System.out.println(user.toString());
    }
}

这种纯Java的配置方式,在SpringBoot中随处可见!

代理模式

静态代理

为什么要学习代理模式?因为这就是SpringAOP的底层!

代理是的分类:

  • 静态代理
  • 动态代理

角色分析:

  • 抽象角色:一般会使用接口或者抽象类来解决
  • 真实角色:被代理的角色
  • 代理角色:代理真实角色,代理真实角色后,我们一般会做一些附属操作
  • 客户:访问代理对象的人

代码步骤:

  1. 接口
package org.example.proxy;

public interface Rent {
    void rent();
}
  1. 真实角色
package org.example.proxy;

public class Host implements Rent {
    public void rent() {
        System.out.println("房东出租房子");
    }
}
  1. 代理角色
package org.example.proxy;

public class Proxy implements Rent {

    private Host host;

    public Proxy(){}

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

    public void rent() {
        host.rent();
        houseView();
        contract();
        charge();
    }

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

    public void contract(){
        System.out.println("中介和你签署合同");
    }

    public void charge(){
        System.out.println("中介收取费用");
    }
}
  1. 客户端访问代理角色
package org.example.proxy;

public class Customer {
    public static void main(String[] args) {
        Host host = new Host();
        Proxy proxy = new Proxy(host);
        proxy.rent();
    }
}

代理模式的好处:

  • 可以使真实角色的操作更加纯粹!不用去关注一些公共的业务
  • 公共业务也就交给了代理角色,实现了业务的分工!
  • 公共业务发生拓展的时候,方便集中管理!

缺点:

  • 一个真实角色就会产生一个代理角色;代码量会翻倍,开发效率会变低!

加深理解

接口:

package org.example.service;

public interface UserService {
    void add();
    void delete();
    void update();
    void query();
}

真实角色:

package org.example.service;

public class UserServiceImpl implements UserService {
    @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("查询了一个用户");
    }
}

代理角色:

package org.example.service;

public class UserServiceProxy implements UserService {

    private UserService userService;

    public void setUserService(UserService userService){
        this.userService=userService;
    }

    public void log(String method){
        System.out.println("[Debug] 执行了"+method+"方法");
    }

    @Override
    public void add() {
        log("add");
        userService.add();
    }

    @Override
    public void delete() {
        log("delete");
        userService.delete();
    }

    @Override
    public void update() {
        log("update");
        userService.update();
    }

    @Override
    public void query() {
        log("query");
        userService.query();
    }
}

客户端访问代理角色:

package org.example.service;

public class Customer {
    public static void main(String[] args) {
        UserService userService=new UserServiceImpl();
        UserServiceProxy userServiceProxy = new UserServiceProxy();
        userServiceProxy.setUserService(userService);
        userServiceProxy.add();
    }
}

动态代理

  • 动态代理和静态代理角色一样

  • 动态代理的代理类是动态生成的,不是我们直接写好的

  • 动态代理分为两大类:基于接口的动态代理,基于类的动态代理

    • 基于接口:JDK动态代理
    • 基于类:cglib
    • java字节码实现:javasist

需要了解两个类:Proxy(代理)、InvocationHandler(调用处理程序)

动态代理的好处:

  • 可以使真实角色的操作更加纯粹,不用去关注一些公共的业务
  • 公共业务就交给代理角色,实现了业务的分工
  • 公共业务发生扩展的时候,方便集中管理
  • 一个动态代理类代理的是一个接口,一般就是对应的一类业务
  • 一个动态代理类可以代理多个类,只要是实现了同一个接口即可

AOP

什么是AOP

AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生泛型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

AOP在Spring中的作用

提供声明式事务;允许用户自定义切面

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

SpringAOP中,通过Advice定义横切逻辑,Spring中支持5中类型的Advice:

通知类型 连接点 实现接口
前置通知 方法前 org.springframework.aop.MethodBeforeAdvice
后置通知 方法后 org.springframework.aop.AfterReturningAdvice
环绕通知 方法前后 org.aopalliance.intercept.MethodInterceptor
异常抛出通知 方法抛出异常 org.springframework.aop.ThrowsAdvice
引介通知 类中增加新的方法属性 org.springframework.aop.IntroductionInterceptor

即AOP在不改变原有代码的情况下,去增加新的功能

使用Spring实现AOP

【重点】使用AOP织入,需要导入一个maven依赖

<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.9.6</version>
</dependency>

方式一:使用spring的api接口实现

切入点

package org.example.service.impl;

import org.example.service.UserService;

public class UserServiceImpl implements UserService {
    @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("查询了一个用户");
    }
}

通知

package org.example.advice;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class Log implements MethodBeforeAdvice {

    /**
     *
     * @param method 要执行的目标对象的方法
     * @param objects 参数
     * @param o 目标对象
     * @throws Throwable
     */
    @Override
    public void before(Method method, Object[] objects, Object o) throws Throwable {
        System.out.println(o.getClass().getSimpleName()+"的"+method.getName()+"方法被执行了");
    }
}

配置文件

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

    <!--注册bean-->
    <bean id="userService" class="org.example.service.impl.UserServiceImpl"/>
    <bean id="log" class="org.example.advice.Log"/>
    <bean id="afterLog" class="org.example.advice.AfterLog"/>

    <!--方式一:使用原生spring api接口-->
    <!--配置aop:需要导入aop的约束-->
    <aop:config>
        <!--切入点-->
        <aop:pointcut id="pointcut" expression="execution(* org.example.service.impl.UserServiceImpl.*(..))"/>
        <!--执行前置增强-->
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
        <!--执行后置增强-->
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
    </aop:config>

</beans>

测试类

package org.example.aop;

import org.example.service.UserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class AopTest {

    @Autowired
    private UserService userService;

    @Test
    public void testAdd(){
        userService.add();
    }
}

方式二:自定义类实现

切面

package org.example.diy;

public class DiyPointCut {

    public void before(){
        System.out.println("======方法执行前======");
    }

    public void afterReturning(){
        System.out.println("======方法执行后======");
    }


}

切入点

package org.example.service.impl;

import org.example.service.UserService;

public class UserServiceImpl implements UserService {
    @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("查询了一个用户");
    }
}

配置文件

	<!--方式二:自定义类-->
    <bean id="diy" class="org.example.diy.DiyPointCut"/>
    <aop:config>
        <!--自定义切面,ref:要引用的类-->
        <aop:aspect ref="diy">
            <!--切入点-->
            <aop:pointcut id="pointcut" expression="execution(* org.example.service.impl.UserServiceImpl.*(..))"/>
            <!--通知-->
            <aop:before method="before" pointcut-ref="pointcut"/>
            <aop:after-returning method="afterReturning" pointcut-ref="pointcut"/>
        </aop:aspect>
    </aop:config>

测试类

package org.example.aop;

import org.example.service.UserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class AopTest {

    @Autowired
    private UserService userService;

    @Test
    public void testAdd(){
        userService.add();
    }
}

方式三:注解实现

切入点

package org.example.diy;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;

@Aspect//标注这个类是一个切面
public class AnnotationPointCut {

    @Before("pointcut()")
    public void before(){
        System.out.println("======方法执行前======");
    }

    @AfterReturning("pointcut()")
    public void afterReturning(){
        System.out.println("======方法执行后======");
    }

    //在环绕增强中,我们可以给定一个参数,代表我们要获取处理切入的点
    @Around("pointcut()")
    public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
        System.out.println("======around-前======");
        Object result = joinPoint.proceed();//执行方法
        System.out.println("======around-后======");
        return result;
    }

    @Pointcut("execution(* org.example.service.impl.UserServiceImpl.*(..))")
    public void pointcut(){}
}

配置文件

<!--方式三:注解实现-->
<bean id="annotationPointCut" class="org.example.diy.AnnotationPointCut"/>
<!--开启注解支持-->
<aop:aspectj-autoproxy/>

测试类

package org.example.aop;

import org.example.service.UserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class AopTest {

    @Autowired
    private UserService userService;

    @Test
    public void testAdd(){
        userService.add();
    }
}

整合myBatis

步骤:

  1. 导入相关jar包
  2. 编写配置文件
  3. 测试

Mybatis-spring

方式一

  1. 编写数据源配置
<!--Datasource:使用Spring的数据源替换Mybatis的配置(c3p0、dbcp、druid)
   这里使用Spring提供的JDBC:org.springframework.jdbc.datasource-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="${jdbc.driver}"/>
    <property name="url" value="${jdbc.url}"/>
    <property name="username" value="${jdbc.username}"/>
    <property name="password" value="${jdbc.password}"/>
</bean>
  1. sqlSessionFactory
<!--sqlSessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <!--绑定MyBatis配置文件-->
    <property name="configLocation" value="classpath:mybatis-config.xml"/>
    <!--<property name="mapperLocations" value="classpath:org/example/mapper/*.xml"/>-->
</bean>
  1. sqlSessionTemplate
<!--sqlSessionTemplate就是我们使用的sqlSession-->
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
    <!--只能使用构造器注入,因为它没有set方法-->
    <constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>
  1. 需要给接口添加实现类
package org.example.mapper.impl;

import org.example.domain.User;
import org.example.mapper.UserMapper;
import org.mybatis.spring.SqlSessionTemplate;

import java.util.List;

public class UserMapperImpl implements UserMapper {

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

    public void setSqlSessionTemplate(SqlSessionTemplate sqlSessionTemplate){
        this.sqlSessionTemplate=sqlSessionTemplate;
    }

    @Override
    public List<User> getAllUser() {
        UserMapper mapper = sqlSessionTemplate.getMapper(UserMapper.class);
        List<User> userList = mapper.getAllUser();
        return userList;
    }
}
  1. 将实现类注入到 IOC容器中
<bean id="userMapper" class="org.example.mapper.impl.UserMapperImpl">
    <property name="sqlSessionTemplate" ref="sqlSession"/>
</bean>
  1. 测试
@Autowired
private UserMapper userMapper;

@Test
public void testGetAllUserBySpring(){
    List<User> userList = userMapper.getAllUser();
    for (User user : userList) {
        System.out.println(user);
    }
}

方式二

  1. 编写数据源配置
<!--Datasource:使用Spring的数据源替换Mybatis的配置(c3p0、dbcp、druid)
   这里使用Spring提供的JDBC:org.springframework.jdbc.datasource-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="${jdbc.driver}"/>
    <property name="url" value="${jdbc.url}"/>
    <property name="username" value="${jdbc.username}"/>
    <property name="password" value="${jdbc.password}"/>
</bean>
  1. sqlSessionFactory
<!--sqlSessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <!--绑定MyBatis配置文件-->
    <property name="configLocation" value="classpath:mybatis-config.xml"/>
    <!--<property name="mapperLocations" value="classpath:org/example/mapper/*.xml"/>-->
</bean>
  1. 编写接口实现类
package org.example.mapper.impl;

import org.example.domain.User;
import org.example.mapper.UserMapper;
import org.mybatis.spring.support.SqlSessionDaoSupport;

import java.util.List;

public class UserMapperImplTwo extends SqlSessionDaoSupport implements UserMapper {
    @Override
    public List<User> getAllUser() {
        return getSqlSession().getMapper(UserMapper.class).getAllUser();
    }
}
  1. 将实现类注入到IOC容器中
<!--方式二-->
<bean id="userMapper2" class="org.example.mapper.impl.UserMapperImplTwo">
    <property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>
  1. 测试
@Autowired
@Qualifier("userMapper2")
private UserMapper userMapper2;

@Test
public void testGetAllUserBySpring2(){
    List<User> userList = userMapper2.getAllUser();
    for (User user : userList) {
        System.out.println(user);
    }
}

声明式事务

回顾事务

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

事务ACID原则:

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

实现

项目结构:

步骤:

  1. 接口
package org.example.mapper;

import org.example.domain.User;

import java.util.List;

public interface UserMapper {
    void addUser(User user);
    void deleteUser(int id);
    void updateUser(User user);
    User getUserById(int id);
    List<User> getAllUser();
    List<User> transactionTest();
}
  1. UserMapper.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.example.mapper.UserMapper">
    <insert id="addUser" parameterType="user">
        insert into user(name,password) values(#{name},#{password})
    </insert>
    <delete id="deleteUser" parameterType="_int">
        delete from user where id=#{id}
    </delete>
    <update id="updateUser" parameterType="user">
        update user set name=#{name},password=#{password} where id=#{id}
    </update>
    <select id="getUserById" parameterType="_int" resultType="user">
        select * from user where id=#{id}
    </select>
    <select id="getAllUser" resultType="user">
        select * from user
    </select>
</mapper>
  1. UserMapper实现类
package org.example.mapper.impl;

import org.example.domain.User;
import org.example.mapper.UserMapper;
import org.mybatis.spring.support.SqlSessionDaoSupport;

import java.util.List;

public class UserMapperImpl extends SqlSessionDaoSupport implements UserMapper {

    @Override
    public void addUser(User user) {
        getSqlSession().getMapper(UserMapper.class).addUser(user);
    }

    @Override
    public void deleteUser(int id) {
        getSqlSession().getMapper(UserMapper.class).deleteUser(id);
    }

    @Override
    public void updateUser(User user) {
        getSqlSession().getMapper(UserMapper.class).updateUser(user);
    }

    @Override
    public User getUserById(int id) {
        return getSqlSession().getMapper(UserMapper.class).getUserById(id);
    }

    @Override
    public List<User> getAllUser() {
        return getSqlSession().getMapper(UserMapper.class).getAllUser();
    }

    public List<User> transactionTest(){
        User user = new User();
        user.setName("小王");
        user.setPassword("888888");
        addUser(user);
        return getAllUser();
    }
}
  1. spring-dao.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"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://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
        https://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <context:property-placeholder location="db.properties"/>

    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>

    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
        <property name="configLocation" value="classpath:mybatis-config.xml"/>
        <property name="mapperLocations" value="classpath:org/example/mapper/*.xml"/>
    </bean>

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

    <!--结合AOP实现事务的织入-->
    <!--配置事务的类-->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <!--给哪些方法配置事务-->
        <tx:attributes>
            <!--<tx:method name="add"/>
            <tx:method name="delete"/>
            <tx:method name="update"/>
            <tx:method name="query" read-only="true"/>-->
            <tx:method name="*" propagation="REQUIRED"/>
        </tx:attributes>
    </tx:advice>

    <!--配置事务切入-->
    <aop:config>
        <aop:pointcut id="pointcut" expression="execution(* org.example.mapper.impl.*.*(..))"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut"/>
    </aop:config>
</beans>
  1. mybatis-config.xml
<?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">
<configuration>

    <typeAliases>
        <package name="org.example.domain"/>
    </typeAliases>

    <mappers>
        <mapper class="org.example.mapper.UserMapper"/>
    </mappers>

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

    <import resource="spring-dao.xml"/>

    <bean id="userMapper" class="org.example.mapper.impl.UserMapperImpl">
        <property name="sqlSessionFactory" ref="sqlSessionFactory"/>
    </bean>

</beans>
  1. 测试
@Test
public void testTransaction(){
    List<User> userList = userMapper.transactionTest();
    for (User user : userList) {
        System.out.println(user);
    }
}
posted @ 2021-10-23 11:40  (x²+y²-1)³=x²y³  阅读(32)  评论(0编辑  收藏  举报