Spring是于 2003 年兴起的一个轻量级的 Java 开发框架,它是为了解决企业应用开发的复杂性而创建的。 Spring 的核心是控制反转 Inversion of Control (IOC)和面向切面编程 Aspect Oriented Programming( AOP )。 Spring 是 可以在 Java SE/EE 中使用的轻量级开源框架 。
Spring 的主要作用就是为代码“解耦”,降低代码间的耦合度。 就是让对象和对象(模块和模块)之间关系不是使用代码关联,而是通过配置来说明。即在 Spring 中说明对象(模块)的关系。
Spring根据代码的功能特点, 使用 IOC 降低业务对象之间的耦合度。 IOC 使得主业务在相互调用过程中,不用再自己维护关系了,即不用再自己创建要使用的对象了。而是由 Spring容器统一管理,自动“注入” 注入即赋值 。 而 AOP 使得系统级服务得到了最大复用,且不用再由程序员手工将系统级服务“混杂”到主业务逻辑中了,而是由 Spring 容器统一完成“织入”。
Spring 官方网址:https://spring.io
Spring是一个框架,是一个半成品的软件。有 20 个模块组成。它是一个容器管理对象,容器是装东西的, Spring 容器不装文本,数字,装的是对象。 Spring 是存储对象的容器。
其具有以下几个优点:
1)轻量
Spring框架使用的 jar 都比较小,一般在 1M 以下或者几百 kb 。 Spring 核心功能的所需的 jar 总共在 3M 左右。Spring框架运行占用的资源少,运行效率高。不 依赖其他 jar。
2)针对接口编程,解耦合
Spring 提供了 IOC 控制反转,由容器管理对象,对象的依赖关系。原来在程序代码中的对象创建方式,现在由容器完成。对象之间的依赖解耦合。
3)AOP 编程的支持
通过 Spring 提供的 AOP 功能,方便进行面向切面的编程,许多不容易用传统 OOP 实现的功能可以通过 AOP 轻松应付在 Spring 中,开发人员可以从繁杂的事务管理代码中解脱出来,通过声明式方式灵活地进行事务的管理,提高开发效率和质量。
4) 方便集成各种优秀框架
Spring 不排斥各种优秀的开源框架,相反 Spring 可以降低各种框架的使用难度, Spring提供了对各种优秀框架(如 Struts、Hibernate 、 MyBatis )等的直接支持。简化框架的使用。Spring像插线板一样,其他框架是插头,可以容易的组合到一起。需要使用哪个框架,就把这个插头放入插线板。不需要可以轻易的移除。
Spring 由 20 多个模块组成,它们可以分为数据访问/集成( Data Access/Integration )、Web 、面向切面编程( AOP, Aspects )、 提供 JVM 的代理 ( Instrumentation )、消息发送 Messaging 、核心容器( Core Container )和测试 ( Test )。
控制反转 IOC( Inversion of Control ),是一个概念,是一种思想。指将传统上由程序代码直接操控的对象调用权交给容器,通过容器来实现对象的装配和管理。控制反转就是对对象控制权的转移,从程序代码本身反转到了外部容器。 通过容器实现对象的创建,属性赋值,依赖的管理 。
IOC是一个概念,是一种思想,其实现方式多种多样。当前比较流行的实现方式是依赖注入。应用广泛。
依赖:classA 类中含有 classB 的实例,在 classA 中调用 classB 的方法完成功能,即 classA
对 classB 有依赖。
IOC的实现:
➢ 依赖注入: DI( Dependency Inje ction )),程序代码不做定位查询,这些工作由容器自行
完成。
依赖注入 DI 是指程序运行过程中,若需要调用另一个对象协助时,无须在代码中创建被调用者,而是依赖于外部容器,由外部容器创建后传递给程序。
Spring的依赖注入对调用者与被调用者几乎没有任何要求,完全支持对象之间依赖关系的管理。
Spring 框架使用依赖注入( DI )实现 IOC 。
Spring容器是一个超级大工厂,负责创建、管理所有的 Java 对象,这些 Java 对象被称
为 Bean 。 Spring 容器管理着容器中 Bean 之间的依赖关系, Spring 使用“依赖注入”的方式
来管理 Bean 之间的依赖关系。 使用 IOC 实现对象之间的解耦和。
开发工具:idea2017 以上
依赖管理:maven3 以上
jdk:1.8 以上
需要设置maven本机仓库:File -> New Project Settings -> Setting for New Projects
新建maven工程:MyFirstSpring
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-contextartifactId>
<version>5.2.5.RELEASEversion>
dependency>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-pluginartifactId>
<version>3.1version>
<configuration>
<source>12source>
<target>12target>
configuration>
plugin>
plugins>
build>
定义接口:
public interface PrintService {
void printSomething();
}
定义实现类:
public class PrintServiceImpl implements PrintService {
public PrintServiceImpl() {
System.out.println("PrintServince的无参构造方法");
}
@Override
public void printSomething() {
System.out.println("**********业务方法***********");
}
}
在src/main/resources/目录下创建一个xml文件,文件名可以随意,但spring建议的名称为applicationContext.xml。
IDEA已经为我们提供了配置文件的模板,我们可以选定当前目录,然后通过快捷键Alt+Insert打开创建文件列表,输入xml,选择 XML Configuration File,然后选择Spring Config。
spring配置中需要加入约束文件才能正常使用,约束文件时xsd扩展名。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="printService" class="com.gxust.service.PrintServiceImpl"/>
beans>
@Test
public void testOne(){
//指定spring配置文件的位置和名称
String resource = "applicationContext.xml";
//创建spring容器对象
ApplicationContext container = new ClassPathXmlApplicationContext(resource);
//通过id从spring容器中获取对象
PrintService service = (PrintService) container.getBean("printService");
//执行对象的业务方法
service.printSomething();
}
得到结果:
PrintServince的无参构造方法
**********业务方法***********
spring配置文件中加入java.util.Date
定义:
<bean id="myDate" class="java.util.Date"/>
然后我们在Test测试类中:
通过调用getBean("myDate");
来获取日期类对象
ApplicationContext接口(容器)
ApplicationContext用于加载 Spring 的配置文件,在程序中充当“容器”的角色。其实现类有两个。
1》配置文件在类路径下
若Spring配置文件存放在项目的类路径下,则使用ClassPathXmlApplicationContext
实现类进行加载。
@Test
public void testOne(){
//指定spring配置文件的位置和名称,该文件在类路径下
String resource = "applicationContext.xml";
//创建spring容器对象
ApplicationContext container = new ClassPathXmlApplicationContext(resource);
//通过id从spring容器中获取对象
PrintService service = (PrintService) container.getBean("printService");
//执行对象的业务方法
service.printSomething();
}
2》ApplicationContext容器中对象的装配时机
ApplicationContext容器,会在容器对象初始化时,将其中的所有对象一次性全部装配好。以后代码中若要使用到这些对象,只需从内存中直接获取即可。执行效率较高,但占用内存。
名词解释:
DI(Dependency Injection)依赖注入,指容器复制创建和维护对象之间的依赖关系,而不是通过对象本身复制自己的创建和解决自己的依赖。控制反转是通过依赖注入实现的。
set 注入也叫作设值注入。它指的是通过 setter 方法传入被调用者的实例。这种注入方式简单、直观,因而在 Spring 的依赖注入中大量使用。
public class Student {
private String name;
private int age;
//setter
//toString()
}
我们可以在配置文件中使用
来进行属性赋值。其方式是spring容器通过调用类中的setter方法进行赋值,若类中没有setter方法,则无法进行赋值。
xml文件:
<bean id="student" class="com.gxust.bean.Student">
<property name="name" value="宁荣荣"/>
<property name="age" value="20"/>
bean>
测试方法:
@Test
public void testSet(){
//指定spring配置文件的位置和名称,该文件在类路径下
String config = "applicationContext.xml";
//创建spring容器对象
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
//通过id从spring容器中获取对象
Student student = (Student) context.getBean("student");
//输出对象的值
System.out.println(student);
}
public class School {
private String name;
private String address;
//setter
//toString
}
在Student类中,添加属性School:
public class Student {
private String name;
private int age;
private School school;
//setter
//toString
}
现在我们需要对Student对象进行依赖注入,其中的属性不仅包含了简单类型,还包含了引用类型,那我们如何对属性赋值呢?
==当指定
bean 的某属性值为另一 bean 的实例时,可以通过 ref 指定它们间的引用关系。ref 的值必须为某 bean 的 id 值。
语法格式为property name="属性名" ref="某bean的id值"/>
示例:
首先声明School对象
<bean id="slkSchool" class="com.gxust.bean.School">
<property name="name" value="史莱克学院"/>
<property name="address" value="天斗城"/>
bean>
对于其他Bean对象的引用,使用
标签的ref属性
<bean id="student" class="com.gxust.bean.Student">
<property name="name" value="宁荣荣"/>
<property name="age" value="20"/>
<property name="school" ref="slkSchool"/>
bean>
测试方法:
@Test
public void testSet(){
//指定spring配置文件的位置和名称,该文件在类路径下
String config = "applicationContext.xml";
//创建spring容器对象
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
//通过id从spring容器中获取对象
Student student = (Student) context.getBean("student");
//输出对象的值
System.out.println(student);
}
构造注入是指,在构造调用者实例的同时,完成被调用者的实例化。即,使用构造器设置依赖关系。
举例:
为School类声明有参数的构造方法,同时也需要声明无参数构造方法,否则无法被实例化。
public Student(String name, int age, School school) {
this.name = name;
this.age = age;
this.school = school;
//有参构造方法
}
public Student() {
//无参构造方法
}
在配置文件中使用
<bean name="con-student" class="com.gxust.bean.Student">
<constructor-arg name="name" value="唐三"/>
<constructor-arg name="age" value="21"/>
<constructor-arg name="school" ref="slkSchool"/>
bean>
测试方法:
@Test
public void testSet(){
//指定spring配置文件的位置和名称,该文件在类路径下
String config = "applicationContext.xml";
//创建spring容器对象
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
//通过id从spring容器中获取对象
Student student = (Student) context.getBean("con-student");
//输出对象的值
System.out.println(student);
}
标签中用于指定参数的属性有:
➢ name :指定参数名称。
➢ index:指明该参数对应着构造器的第几个参数,从 0 开始。不过,该属性不要也行。但要注意,若参数类型相同,或之间有包含关系,则需要保证赋值顺序要与构造器中的参数顺序一致。
对于引用类型属性的注入,也可不在配置文件中显示的注入。可以通过为
标签设置 autowire 属性值,为引用类型属性进行隐式自动注入(默认是不自动注入引用类型属性) 。根据自动注入判断标准的不同,可以分为两种:
byName:根据名称自动注入
byType: 根据类型自动注入
当配置文件中被调用者 bean 的 id 值与代码中调用者 bean 类的属性名相同时,可使用 byName 方式,让容器自动将被调用者 bean 注入给调用者 bean 。容器是通过调用者的 bean 类的属性名与配置文件的被调用者 bean 的 id 进行比较而实现自动注入的。
举例:
实体类:Student
public class Student {
private String name;
private int age;
private School school;//引用类型
//setter
//toString
}
实体类:School
public class School {
private String name;
private String address;
//setter
//toString
}
spring配置文件:
<bean id="student" class="com.gxust.bean.Student" autowire="byName">
<property name="name" value="宁荣荣"/>
<property name="age" value="20"/>
bean>
<bean id="school" class="com.gxust.bean.School">
<property name="name" value="史莱克学院"/>
<property name="address" value="天斗城"/>
bean>
测试方法:
@Test
public void testSet(){
//指定spring配置文件的位置和名称,该文件在类路径下
String config = "applicationContext.xml";
//创建spring容器对象
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
//通过id从spring容器中获取对象
Student student = (Student) context.getBean("student");
//输出对象的值
System.out.println(student);
}
使用 byType 方式自动注入,要求:配置文件中被调用者 bean 的 class 属性指定的类,要与代码中调用者 bean 类的某引用类型属性类型同源。即要么相同,要么有 is-a 关系(子类,或是实现类)。但这样的同源的被调用 bean 只能有一个。多于一个,容器就不知该匹配哪一个了。
spring配置文件:
<bean id="student" class="com.gxust.bean.Student" autowire="byType">
<property name="name" value="宁荣荣"/>
<property name="age" value="20"/>
bean>
<bean id="SLKschool" class="com.gxust.bean.School">
<property name="name" value="史莱克学院"/>
<property name="address" value="天斗城"/>
bean>
在实际应用里,随着应用规模的增加,系统中 Bean 数量也大量增加,导致配置文件变得非常庞大、臃肿。为了避免这种情况的产生,提高配置文件的可读性与可维护性,可以将 Spring 配置文件分解成多个配置文件。
包含关系的配置文件:
多个配置文件中有一个总文件,总配置文件将各其它子文件通过
引入。在 Java 代码中只需要使用总配置文件对容器进行初始化即可。
举例:
为两个实体类各自创建一个配置文件:Spring-School.xml
和 Spring-Student.xml
在 resources 目录下的applicationContext.xml中加入:
<import resource="classpath:com/gxust/bean/Spring-School.xml"/>
<import resource="classpath:com/gxust/bean/Spring-Student.xml"/>
也可使用通配符*
。但,此时要求父配置文件名不能满足*
所能匹配的格式,否则将出现循环递归包含。就本例而言,父配置文件不能匹配 spring-*.xml 的格式,即不能起名为spring-total.xml。
示例:
总配置文件:
<import resource="classpath:com/gxust/bean/Spring-*.xml"/>
测试代码:
@Test
public void testSet(){
//指定spring配置文件的位置和名称,该文件在类路径下
String config = "applicationContext.xml";
//创建spring容器对象
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
//通过id从spring容器中获取对象
Student student = (Student) context.getBean("student");
//输出对象的值
System.out.println(student);
}
对于DI使用注解,将不需要在Spring配置文件中声明bean实例。Spring中使用注解,需要在原有Spring运行环境基础上再做一些改变。
需要在Spring配置文件中配置组件扫描器,用于在指定的基本包中扫描注解。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.gxust.bean"/>
beans>
指定多个包的三种方式:
context:component-scan
指定不同的包路径
<context:component-scan base-package="com.gxust.bean"/>
<context:component-scan base-package="com.gxust.service"/>
<context:component-scan base-package="com.gxust.bean,com.gxust.service"/>
<context:component-scan base-package="com.gxust.bean;com.gxust.service"/>
<context:component-scan base-package="com.gxust.bean com.gxust.service"/>
<context:component-scan base-package="com.gxust"/>
<context:component-scan base-package="com"/>
<context:component-scan base-package="com.gxust.bean"/>
使用方法: 需要在类上使用注解@Component ,该注解的 value 属性用于指定该 bean 的 id 值。
/**
* 注解参数中省略了value属性,该属性用于指定Bean的id
*/
@Component(Class_oneStudent)
public class Student {
private String name;
private int age;
private School school;
另外,Spring还提供了3个创建对象的注解:
@Repository
用于对DAO实现类进行注解@Service
用于对Service实现类进行注解@Controller
用于对Controller实现类进行注解这三个注解与@Component 都可以创建对象,但这三个注解还有其他的含义 ,@Service创建业务层对象,业务层对象可以加入事务功能,@Controller 注解创建的对象可以作为处理器接收用户的请求。
@Repository,@Service ,@Controller 是对@Component 注解的细化,标注不同层的对象。 即 持久层对象,业务层对象,控制层对象。
若@Component不指定value属性,则 bean的 id是类名的首字母小写。
/**
* 注解参数中省略了value属性,该属性用于指定Bean的id
* 不指定value属性,bean的id为 student
* 使用getbean(student)获取对象
*/
@Component
public class Student {
使用方法: 需要在属性上使用注解@Value,该注解的value属性用于指定要注入的值。使用该注解完成属性注入时,类中无需setter。当然,若属性有setter,则也可以将其加到setter上。
示例:
/**
* 注解参数中省略了value属性,该属性用于指定Bean的id
*/
@Component
public class Student {
/**
* 使用注解@Value对简单类型属性注入
*/
@Value("宁荣荣")
private String name;
@Value("19")
private int age;
private School school;
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", age=" + age +
", school=" + school +
'}';
}
}
使用方法: 需要在引用属性上使用注解@Autowired,该注解默认使用按类型自动装配Bean的方式。使用该注解完成属性注入时,类中无需setter。当然,若属性有setter,则也可以将其加到setter上。
举例:
@Component
public class School {
@Value("史莱克学院")
private String name;
@Value("天斗城")
private String address;
@Override
public String toString() {
return "School{" +
"name='" + name + '\'' +
", address='" + address + '\'' +
'}';
}
}
@Component
public class Student {
/**
* 使用注解@Value对简单类型属性注入
* 使用注解@Autowired对引用类型使用按类型自动装配
*/
@Value("宁荣荣")
private String name;
@Value("19")
private int age;
@Autowired
private School school;
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", age=" + age +
", school=" + school +
'}';
}
}
**使用方法:**需要在引用属性上联合使用注解@Autowired
和 @Qualifier
。@Qualifier
的 value 属性用于指定要匹配的 Bean 的 id 值。类中无需 set 方法,也可以加到 set 方法上。
示例:
@Component(school)
public class School {
@Value("史莱克学院")
private String name;
@Value("天斗城")
private String address;
@Override
public String toString() {
return "School{" +
"name='" + name + '\'' +
", address='" + address + '\'' +
'}';
}
}
@Component
public class Student {
/**
* 使用注解@Value对简单类型属性注入
* 联合使用注解@Autowired和@Qualifier对引用类型使用byName自动注入
*/
@Value("宁荣荣")
private String name;
@Value("19")
private int age;
@Autowired
@Qualifier("school")
private School school;
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", age=" + age +
", school=" + school +
'}';
}
}
@Autowired
还有一个属性required,默认值为true,表示当匹配失败后,会终止程序运行。若将其值设置为false,则匹配失败,则被忽略,未匹配的属性值为null。
@Autowired(required = false)
@Qualifier("school")
private School school;
Spring 提供了对jdk中@Resource
注解的支持。@Resource
注解既可以按名称匹配Bean,也可以按类型匹配Bean。默认是按名称注入。使用该注解,要求JDK必须是6及以上版本。@Resource
可在属性上,也可以在set方法上。
@Resource
注解若不带任何参数,采用默认按名称的方式注入,按名称不能注入bean,则会按类型进行Bean的匹配注入。示例:
@Component(myschool)
public class School {
@Value("史莱克学院")
private String name;
@Value("天斗城")
private String address;
@Override
public String toString() {
return "School{" +
"name='" + name + '\'' +
", address='" + address + '\'' +
'}';
}
}
@Component
public class Student {
/**
* 使用注解@Value对简单类型属性注入
* 使用注解@Autowired对引用类型使用按名称自动装配
*/
@Value("宁荣荣")
private String name;
@Value("19")
private int age;
@Resource
private School school;
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", age=" + age +
", school=" + school +
'}';
}
}
@Resource
注解指定其 name 属性,则name的值即为按照名称进行匹配的 Bean 的 id。示例:
@Component(myschool)
public class School {
@Value("史莱克学院")
private String name;
@Value("天斗城")
private String address;
@Override
public String toString() {
return "School{" +
"name='" + name + '\'' +
", address='" + address + '\'' +
'}';
}
}
@Component
public class Student {
/**
* 使用注解@Value对简单类型属性注入
* 使用注解@Autowired对引用类型使用按名称自动装配
*/
@Value("宁荣荣")
private String name;
@Value("19")
private int age;
@Resource(name = "myschool")
private School school;
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", age=" + age +
", school=" + school +
'}';
}
}
使用注解的优点是:
XML方式的优点是:
Step1:项目01
先定义好接口与一个实现类,该实现类中除了要实现接口中的方法外,还要再写两个非业务方法。非业务方法也称为交叉业务逻辑:
➢ doTransaction():用于事务处理
➢ doLog():用于日志处理
然后,再使接口方法调用它们。接口方法也称为主业务逻辑。
接口:
实现类:
Step2: 项目02
当然,也可以有另一种解决方案:将这些交叉业务逻辑代码放到专门的工具类或处理类中,由主业务逻辑调用。
Step3: 项目03
以上的解决方案,还是存在弊端:交叉业务与主业务深度耦合在一起。当交叉业务逻辑较多时,在主业务代码中会出现大量的交叉业务逻辑代码调用语句,大大影响了主业务逻辑的可读性,降低了代码的可维护性,同时也增加了开发难度。所以,可以采用动态代理方式。在不修改主业务逻辑的前提下,扩展和增强其功能。
功能增强:
AOP( Aspect Orient Programming ),面向切面编程 。 面向切面编程是从动态角度考虑程序运行过程。
AOP底层,就是采用动态代理模式实现的。采用了两种代理: JDK 的动态代理 ,与 CGLIB的动态代理 。
AOP为 Aspect Oriented Programming 的缩写,意为:面向切面编程, 可 通过运行期动态代理实现程序功能的统一维护的一种技术。AOP 是 Spring 框架中的一个重要内容 。利用 AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
面向切面编程,就是将交叉业务逻辑封装成切面,利用AOP 容器的功能将切面织入到主业务逻辑中。所谓交叉业务逻辑是指,通用的、与主业务逻辑无关的代码,如安全检查、事务、日志 、缓存 等。
若不使用AOP ,则会出现代码纠缠,即交叉业务逻辑与主业务逻辑混合在一起。这样会使主业务逻辑变的混杂不清。
例如,转账,在真正转账业务逻辑前后,需要权限控制、日志记录、加载事务、结束事务等交叉业务逻辑,而这些业务逻辑与主业务逻辑间并无直接关系。但,它们的代码量所占比重能达到总代码量的一半甚至还多。它们的存在,不仅产生了大量的“冗余”代码,还大
大干扰了主业务逻辑"转账"。
1.减少重复
2.专注业务
注意:面向切面编程只是面对对象编程的一种补充
切面泛指交叉业务逻辑。上例中的事务处理、日志处理就可以理解为切面。常用的切面是通知(Advice)。实际就是对主业务逻辑的一种增强。
连接点指可以被切面织入的具体方法。通常业务接口中的方法均为连接点。
切入点指声明的一个或多个连接点的集合。通过切入点指定一组方法。
被标记为 final 的方法是不能作为连接点与切入点的。因为最终的是不能被修改的,不能被增强的。
目标对象指将要被增强的对象。即包含主业务逻辑的类的对象。上例中的StudentServiceImpl的对象若被增强,则该类称为目标类,该类对象称为目标对象。当然,不被增强,也就无所谓目标不目标了。
通知表示切面的执行时间,Advice也叫增强。上例中的MyInvocationHandler就可以理解为是一种通知。换个角度来说,通知定义了增强代码切入到目标代码的时间点,是目标方法执行之前执行,还是之后执行等。通知类型不同,切入时间不同。
切入点定义切入的位置,通知定义切入的时间。
对于AOP这种编程思想,很多框架都进行了实现。Spring就是其中之一,可以完成面对切面编程。然而,AspectJ也实现了AOP的功能,且其实现方式更为简捷,使用更为方便,而且还支持注解式开发。所以,Spring又将AspectJ的对于AOP的实现也引入到了自己的框架中。
在Spring中使用AOP开发时,一般使用AspectJ的实现方式。
AspcetJ简介
AspectJ
是一个优秀面向切面的框架, 它扩展了 Java 语言 ,提供了强大的切面实现。
官方网址:https://www.eclipse.org/aspectj
AspectJ 是 Eclipse的开源项目,官网介绍如下:
a seamless aspect oriented extension to the Javatm programming language (一种基于 Java 平台的面向切面编程的语言)
Java platform compatible(兼容 Java 平台,可以无缝扩展)
easy to learn and use (易学易用)
AspectJ中常用的通知有五种类型:
AspectJ定义了专门的表达式用于指定切入点。表达式的原型是:
execution(
modifiers-pattern?
ret-type-pattern
declaring-type-pattern?
name-pattern(param-pattern)
throws-pattern?
)
解释:
modifiers-pattern
访问类型权限(public protect…)
ret-type-pattern
返回值类型
declaring-type-pattern
包名类名
name-pattern(param-pattern)
方法名(参数类型和参数个数)
throws-pattern
抛出异常类型
?
表示可选部分
以上表达式共四个部分:
execution( 访问权限 方法返回值 方法声明(参数) 异常类型 )
切入点表达式要匹配的对象就是目标方法的方法名。所以,execution
表达式中明显就是方法的签名。注意,表达式中访问权限和异常类型可以省略,各部分间用空格分开。在其中可以使用以下符号:
符号 | 意义 |
---|---|
* | 0至多个任意字符 |
.. | 用在方法参数中,表示任意多个参数 用在包名后,表示当前包及其子包路径 |
+ | 用在类名后,表示当前类及其子类 用在接口后,表示当前接口及其子接口 |
举例:
execution(public * *(..)): 指定切入点为:任意公共方法。
execution(* set*(..)):指定切入点为:任何一个以“set” 开始的方法。
execution(* com.xyz.service.*.*(..)):指定切入点为:定义在service包里的任意类的任意方法。
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.11version>
<scope>testscope>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-contextartifactId>
<version>5.2.5.RELEASEversion>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-aspectsartifactId>
<version>5.2.5.RELEASEversion>
dependency>
插件:
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-pluginartifactId>
<version>3.1version>
<configuration>
<source>12source>
<target>12target>
configuration>
plugin>
plugins>
build>
在 AspectJ 实现 AOP 时,要引入 AOP 的约束。配置文件中使用的 AOP 约束中的标签,均是 AspectJ 框架使用的,而非 Spring 框架本身在实现 AOP 时使用的。AspectJ对于 AOP 的实现有注解和配置文件两种方式,常用是注解方式。
/**
*业务接口
*/
public interface SomeService {
void doSome(String name,int age);
}
public class SomeServiceImpl implements SomeService {
@Override
public void doSome(String name, int age) {
System.out.println("执行了业务方法doSome");
}
}
/**
* 定义切面类
* @Aspect:是aspectj框架的注解,表示当前类是切面类
*/
@Aspect
public class Myaspect {
/**
* @Before:前置通知
* 属性:value切入点表达式,表示切面执行的位置
* 位置:方法的定义上面
* execution( 访问权限 方法返回值 方法声明(参数) 异常类型 )
*/
@Before(value = "execution(* com.gxust.service.SomeServiceImpl.doSome(..))")
public void myBefore(){
/**
* 切面代码块的功能,例如输出日志,事务处理
*/
System.out.println("前置通知:在目标方法之前先执行,例如输出日志");
}
}
<bean id="someServiceTarget" class="com.gxust.service.SomeServiceImpl"/>
<bean id="myAspect" class="com.gxust.aspects.Myaspect"/>
<aop:aspectj-autoproxy/>
<aop:aspectj-autoproxy/>
的底层是AnnotationAwareAspectJAutoProxyCreator 实现的。从其类名就可看出,是基于 AspectJ 的注解适配自动代理生成器。
其工作原理是,
通过扫描找到 @Aspect 定义的切面类,再由切面类根据切入点找到目标类的目标方法,再由通知类型找到切入的时间点。
@Test
public void testAOP(){
/**
* 1.指定Spring配置文件的名称
* 2.创建Spring容器对象
* 3.通过id从Spring容器中获取对象,目标就是经过aspectj修改后的代理对象
* 4.通过代理执行对象业务方法,实现功能增强
*/
String config = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
SomeService target = (SomeService) context.getBean("someServiceTarget");
target.doSome("唐三",20);
}
在目标方法执行之前执行。被注解为前置通知的方法,可以包含一个JoinPoint 类型参数。该类型的对象本身就是切入点表达式。通过该参数,可获取切入点表达式、方法签名、目标对象等。
不光前置通知的方法,可以包含一个 JoinPoint 类型参数 ,所有的通知方法均可包含该参数 。
示例:
/**
* 定义切面类
* @Aspect:是aspectj框架的注解,表示当前类是切面类
*/
@Aspect
public class Myaspect {
/**
* @Before:前置通知
* 属性:value切入点表达式,表示切面执行的位置
* 位置:方法的定义上面
* execution( 访问权限 方法返回值 方法声明(参数) 异常类型 )
* JoinPoint:表示连接点方法
*/
@Before(value = "execution(* com.gxust.service.SomeServiceImpl.doSome(..))")
public void myBefore(JoinPoint jp){
/**
* JoinPoint能够获取到方法的定义,方法的参数等信息
*/
System.out.println("连接点的方法定义:"+jp.getSignature());
System.out.println("连接点的方法参数个数:"+jp.getArgs().length);
/**
* 获取方法的参数信息
*/
Object[] args = jp.getArgs();
for (Object arg :args){
System.out.println(arg);
}
/**
* 切面代码块的功能,例如输出日志,事务处理
*/
System.out.println("前置通知:在目标方法之前先执行,例如输出日志");
}
}
测试方法:
@Test
public void testAOP(){
/**
* 1.指定Spring配置文件的名称
* 2.创建Spring容器对象
* 3.通过id从Spring容器中获取对象,目标就是经过aspectj修改后的代理对象
* 4.通过代理执行对象业务方法,实现功能增强
*/
String config = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
SomeService target = (SomeService) context.getBean("someServiceTarget");
target.doSome("唐三",20);
}
结果:
连接点的方法定义:void com.gxust.service.SomeService.doSome(String,int)
连接点的方法参数个数:2
唐三
20
前置通知:在目标方法之前先执行,例如输出日志
执行了业务方法doSome
在目标方法执行之后执行。由于是目标方法之后执行,所以可以获取到目标方法的返回值。该注解的returning
属性就是用于指定接收方法返回值的变量名的。所以,被注解为后置通知的方法,除了可以包含JoinPoint
参数外,还可以包含用于接收返回值的变量。该变量最好是Object类型,因为目标方法的返回值可能是任何类型。
接口增加方法:
/**
*业务接口
*/
public interface SomeService {
void doSome(String name,int age);
String doOther(String name,int age);
}
实现方法:
@Override
public String doOther(String name, int age) {
System.out.println("执行了业务方法doOther");
return "abcd";
}
定义切面:
/**
* @AfterReturning:后置通知
* returning:指定接收方法返回值的变量名
*/
@AfterReturning(value = "execution(* com.gxust.service.SomeServiceImpl.doOther(..))",returning = "result")
public void myAfterReturning(Object result){
/**
* 修改目标方法的执行结果
*/
if ( result != null){
String s = (String) result;
result = s.toUpperCase();
}
System.out.println("后置通知:在目标方法之后执行的功能增强,例如执行事务处理(切面)"+result);
}
测试方法:
@Test
public void testOther(){
/**
* 1.指定Spring配置文件的名称
* 2.创建Spring容器对象
* 3.通过id从Spring容器中获取对象,目标就是经过aspectj修改后的代理对象
* 4.通过代理执行对象业务方法,实现功能增强
*/
String config = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
SomeService target = (SomeService) context.getBean("someServiceTarget");
target.doOther("宁荣荣",20);
}
在目标方法执行之前之后执行。被注解为环绕增强的方法要有返回值,Object 类型。并且方法可以包含一个 ProceedingJoinPoint
类型的参数。接口 ProceedingJoinPoint
其有一个proceed()
方法,用于执行目标方法。若目标方法有返回值,则该方法的返回值就是目标方法的返回值。最后,环绕增强方法将其返回值返回。该增强方法实际是拦截了目标方法的执行。
接口增加方法doAround:
/**
*业务接口
*/
public interface SomeService {
void doSome(String name,int age);
String doOther(String name,int age);
String doAround(String name,int age);
}
接口方法实现:
@Override
public String doAround(String name, int age) {
System.out.println("执行了业务方法doAround");
return "doAround";
}
定义切面:
/**
* @Around:环绕通知
*/
@Around(value = "execution(* *..SomeServiceImpl..doAround(..))")
public Object myAround(ProceedingJoinPoint point) throws Throwable {
Object obj = null;
/**
* 执行前增强功能
*/
System.out.println("环绕通知:在目标方法之前执行,例如输出日志");
/**
* 执行目标方法的调用,等同于method.invoke(target,args)
*/
obj = point.proceed();
/**
* 执行后增强功能
*/
System.out.println("环绕通知:在目标方法之后执行的,例如处理事务");
/**
* 返回目标方法的执行结果
*/
return obj;
}
测试方法:
@Test
public void testOther(){
/**
* 1.指定Spring配置文件的名称
* 2.创建Spring容器对象
* 3.通过id从Spring容器中获取对象,目标就是经过aspectj修改后的代理对象
* 4.通过代理执行对象业务方法,实现功能增强
*/
String config = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
SomeService target = (SomeService) context.getBean("someServiceTarget");
String result = target.doAround("宁荣荣", 20);
System.out.println(result);
}
在目标方法抛出异常后执行。该注解的 throwing 属性用于指定所发生的异常类对象。当然,被注解为异常通知的方法可以包含一个参数 Throwable ,参数名称为 throwing 指定的名称,表示发生的异常对象。
在目标方法抛出异常后执行。该注解的
throwing 属性用于指定所发生的异常类对象。
当然,被注解为异常通知的方法可以包含一个参数 Throwable ,参数名称为 throwing 指定的名称,表示发生的异常对象。
增加业务方法doThrow:
/**
*业务接口
*/
public interface SomeService {
void doSome(String name,int age);
String doOther(String name,int age);
String doAround(String name,int age);
void doThrow();
}
方法实现:
@Override
public void doThrow() {
/**
* 通过(10/0)产生除 0 异常
*/
System.out.println("执行了业务方法doThrow"+(10/0));
}
定义切面:
@AfterThrowing(value = "execution(* com.gxust.service.SomeServiceImpl.doThrow(..))",throwing = "e")
public void myAfterThrowing(Throwable e){
/**
*把异常发生的时间,位置,原因记录到数据库,日志文件等等。
* 可以在异常发生时,把异常信息通过短信,邮件等发送给开发人员。
*/
System.out.println("异常通知:在目标方法抛出异常时执行的,异常原因:"+e.getMessage());
}
测试方法:
@Test
public void testOther(){
/**
* 1.指定Spring配置文件的名称
* 2.创建Spring容器对象
* 3.通过id从Spring容器中获取对象,目标就是经过aspectj修改后的代理对象
* 4.通过代理执行对象业务方法,实现功能增强
*/
String config = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
SomeService target = (SomeService) context.getBean("someServiceTarget");
target.doThrow();
}
无论目标方法是否抛出异常,该增强均会被执行。
增加方法:
/**
*业务接口
*/
public interface SomeService {
void doSome(String name,int age);
String doOther(String name,int age);
String doAround(String name,int age);
void doThrow();
void doAfter();
}
方法实现:
@Override
public void doAfter() {
/**
* 通过(10/0)产生除 0 异常
*/
System.out.println("执行了业务方法doAfter"+10/0);
}
定义切面:
@After(value = "execution(* com.gxust.service.SomeServiceImpl.doAfter(..))")
public void myAfter(){
/**
* 最终通知,总是会被执行的方法
*/
System.out.println("最终通知,总是会被执行的方法");
}
测试方法:
@Test
public void testOther(){
/**
* 1.指定Spring配置文件的名称
* 2.创建Spring容器对象
* 3.通过id从Spring容器中获取对象,目标就是经过aspectj修改后的代理对象
* 4.通过代理执行对象业务方法,实现功能增强
*/
String config = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
SomeService target = (SomeService) context.getBean("someServiceTarget");
target.doAfter();
}
当较多的通知增强方法使用相同的execution切入点表达式时,编写、维护均较为麻烦。AspectJ提供了@Pointcut注解,用于定义execution切入点表达式。
其用法是,将@Pointcut注解在一个方法之上,以后所有的execution的value属性值均可使用该方法作为切入点。代表的就是@Pointcut定义的切入点。这个使用@Pointcut注解的方法一般使用private的标识方法,即没有实际作用的方法。
@After(value = "myPointcut()")
public void myAfter(){
/**
* 最终通知,总是会被执行的方法
*/
System.out.println("最终通知,总是会被执行的方法");
}
@Pointcut(value = "execution(* com.gxust.service.SomeServiceImpl.doAfter(..))")
private void myPointcut(){
/**
* 用来定义和管理切面点。简化切入点的定义。
*/
}
将 Mybatis 与 Spring 进行整合,主要解决的问题就是将 SqlSessionFactory对象交由 Spring 来管理。所以,该整合,只需要将 SqlSessionFactory 的对象生成器 SqlSessionFactoryBean 注册在Spring 容器中,再将其注入给Dao的实现类即可完成整合。
实现 Spring 与 Mybatis 的整合常用的方式:扫描的Mapper动态代理
Spring 像插线板一样,mybaitis 框架是插头,可以容易的组合在一起。插线板 Spring 插上 Mybatis,两个框架就是一个整体。
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.11version>
<scope>testscope>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-contextartifactId>
<version>5.2.5.RELEASEversion>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-txartifactId>
<version>5.2.5.RELEASEversion>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.2.5.RELEASEversion>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
<version>3.5.1version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatis-springartifactId>
<version>1.3.1version>
dependency>
<dependency>
<groupId>mysqlgroupId>
<artifactId>mysql-connector-javaartifactId>
<version>5.1.9version>
dependency>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>druidartifactId>
<version>1.1.12version>
dependency>
dependencies>
添加插件:
<build>
<resources>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
resources>
<plugins>
<plugin>
<artifactId>maven-compiler-pluginartifactId>
<version>3.1version>
<configuration>
<source>12source>
<target>12target>
configuration>
plugin>
plugins>
build>
public class Student {
private int id;
private String name;
private int age;
//setter
//getter
//toStirng
}
public interface StudentDao {
int insertStudent(Student student);//插入学生信息
int updateStudent(Student student);//更新学生信息
int deleteStudentById(int id);//删除学生信息
Student selectStudentById(int id);//通过id查询学生信息
List<Student> selectAllStudents();//查询全部学生信息
}
在Dao接口的包中创建 Mybatis 的映射文件 mapper,命名与接口名相同,本例为StudentDao.xml。mapper中的namespace取值也为Dao接口的全限定名称。
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.gxust.dao.StudentDao">
<select id="selectStudentById" resultType="Student">
select id,name,age from student where id = #{id}
select>
<select id="selectAllStudents" resultType="Student">
select id,name,age from student order by id desc
select>
<insert id="insertStudent">
insert student(name,age) values (#{name},#{age})
insert>
<update id="updateStudent">
update student set name=#{name},age=#{age} where id=#{id}
update>
<delete id="deleteStudentById">
delete from student where id=#{stuId}
delete>
mapper>
接口定义:
public interface StudentService {
int addStudent(Student student);//添加学生信息
int modifyStudent(Student student);//修改学生信息
int removeStudent(int id);//删除学生信息
Student selectStudentById(int id);//通过id查询学生信息
List<Student> findAllStudent();//查询所有学生信息
}
实现类定义:
public class StudentServiceImpl implements StudentService {
/**
*定义Dao的引用类型的属性
*/
private StudentDao studentDao;
/**
*为了设值注入
*/
public void setStudentDao(StudentDao studentDao){
this.studentDao = studentDao;
}
@Override
public int addStudent(Student student) {
return studentDao.insertStudent(student);
}
@Override
public int modifyStudent(Student student) {
return studentDao.updateStudent(student);
}
@Override
public int removeStudent(int id) {
return studentDao.deleteStudentById(id);
}
@Override
public Student selectStudentById(int id) {
return studentDao.selectStudentById(id);
}
@Override
public List<Student> findAllStudent() {
return studentDao.selectAllStudents();
}
}
在 resources 目录下定义 MyBatis 的主配置文件,命名为:mybatis.xml。
这里有两点需要注意:
(1)主配置文件中不再需要数据源配置了。因为数据源要交给Spring容器来管理了。
(2)这里对 mapper 映射文件的注册,使用
标签,即只需给出 mapper 映射文件所在的包即可。因为 mapper 的名称与Dao接口名相同,可以使用这种简单注册方式。这种方式的好处是,若有多个映射文件,这里的配置也是不用改变的。当然,也可以使用原来的
标签方式。
DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<typeAliases>
<package name="com.gxust.beans"/>
typeAliases>
<mappers>
<package name="com.gxust.dao"/>
mappers>
configuration>
使用JDBC模板,首先需要配置好数据源,数据源直接以Bean的形式配置在Spring配置文件中。根据数据源的不同,其配置方式不同:
Druid数据源DruidDataSource
Druid 是阿里巴巴的开源数据库连接池。是 Java 语言中最好的数据库连接池。Druid 能够提供强大的监控和扩展功能。Druid 与其他数据库连接的最大区别是提供数据库的监控和扩展的强大功能。
官方网址:https://github.com/alibaba/druid
使用地址:https://github.com/alibaba/druid/wiki 常见问题
<context:property-placeholder location="classpath:jdbc.properties" />
<bean id="AlibabaDataSource" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close">
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}" />
bean>
为了便于维护,可以将数据库连接信息写入到属性文件中,使 Spring 配置文件从中读取数据。属性文件名称自定义 ,但一般都是放在 src 下。
jdbc.properties 文件:
<context:property-placeholder location="classpath:jdbc.properties" />
jdbc.url=jdbc:mysql://localhost:3306/springdb?characterEncoding=utf8
jdbc.username=root
jdbc.password=123456
Spring 配置文件从属性文件中读取数据时,需要在
的 value 属性中使用 ${}
将在属性文件中定义的 key 括起来,以引用指定属性的值。
<property name="username" value="${jdbc.username}"/>
该属性文件若要被 Spring 配置文件读取,其必须在配置文件中进行注册。 使用
标签。(重点)
该方式要求在 Spring 配置文件头部加入 spring context.xsd 约束文件。
标签中有一个属性location,用于指定属性文件的位置。
<context:property-placeholder location="classpath:jdbc.properties" />
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="AlibabaDataSource" />
<property name="configLocation" value="classpath:mybatis.xml" />
bean>
Mapper 扫描配置器 MapperScannerConfigurer 会自动生成指定的基本包中 mapper 的代理对象。该 Bean 无需设置 id 属性。 basePackage
使用分号或逗号设置多个包。
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
<property name="basePackage" value="com.gxust.dao"/>
bean>
向Service 注入 Mapper 代理对象时需要注意,由于通过 Mapper 扫描配置器
MapperScannerConfigurer 生成的 Mapper 代理对象没有名称,所以在向 Service 注入 Mapper 代理时,无法通过名称注入。但可通过接口的简单类名 注入 ,因为生成的是这个 Dao 接口的对象。
<bean id="studentService" class="com.gxust.service.StudentServiceImpl">
<property name="studentDao" ref="studentDao" />
bean>
<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: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/aop https://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
<context:property-placeholder location="classpath:jdbc.properties" />
<bean id="AlibabaDataSource" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close">
<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="AlibabaDataSource" />
<property name="configLocation" value="classpath:mybatis.xml" />
bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
<property name="basePackage" value="com.gxust.dao"/>
bean>
<bean id="studentService" class="com.gxust.service.StudentServiceImpl">
<property name="studentDao" ref="studentDao" />
bean>
beans>
整合步骤如下:
1.新建maven项目
2.加入maven的依赖
1)spring依赖
2)mybatis依赖
3)mysql驱动
4)spring的事务的依赖
5)mybatis和spring集成的依赖: mybatis官方使用的,用来在spring项目中创建mybatis的SqlSesissonFactory,dao对象的
3.创建实体类
4.创建dao接口和mapper文件
5.创建mybatis主配置文件
6.创建Service接口和实现类,属性是dao。
7.创建spring的配置文件:声明mybatis的对象交给spring创建
1)数据源DataSource
2)SqlSessionFactory
3)Dao对象
4)声明自定义的service
8.创建测试类,获取Service对象,通过service调用dao完成数据库的访问
事务原本是数据库中的概念,在 Dao 层。但一般情况下,需要将事务提升到业务层,即 Service 层。这样做是为了能够使用事务的特性来管理具体的业务。
在Spring 中通常可以通过以下两种方式来实现对事务的管理:
(1)使用 Spring 的事务注解管理事务
(2)使用 AspectJ 的 AOP 配置管理事务
Spring 的事务管理,主要用到两个事务相关的接口。
事务管理器是PlatformTransactionManager 接口对象。其主要用于完成事务的提交、回滚,及获取事务的状态信息。
PlatformTransactionManager 接口有两个常用的实现类:
Spring事务的默认回滚方式是: 发生运行时异常 和 error 时回滚,发生受查编译异常时提交 。 不过,对于受查异常,程序员也可以手工设置其回滚方式 。
Throwable 类是 Java 语言中所有错误或异常的超类。只有当对象是此类或其子类之一
的实例时才能通过 Java 虚拟机或者 Java 的 throw 语句抛出。
Error 是程序在运行过程中出现的无法处理的错误,比如 OutOfMemoryError 、
ThreadDeath 、 NoSuchMethodError 等。当这些错误发生时,程序是无法处理(捕获或抛出)的, JVM 一般会终止线程。
程序在编译和运行时出现的另一类错误称之为异常,它是JVM 通知程序员的一种方式。
通过这种方式,让程序员知道已经或可能出现错误,要求程序员对其进行处理。
异常分为运行时异常与受查异常。
运行时异常,是RuntimeException 类或其子类 即只有在运行时才出现的异常。如,
NullPointerException 、 ArrayIndexOutOfBoundsException 、 IllegalArgumentException 等均属于运行时异常。这些异常由 JVM 抛出,在编译时不要求必须处理(捕获或抛出)。但,只要代码编写足够仔细,程序足够健壮,运行时异常是可以避免的。
受查异常,也叫编译时异常,即在代码编写时要求必须捕获或抛出的异常,若不处理,
则无法通过编译。如 SQL Exception ClassNotFoundException IOException 等都属于受查异常 。
RuntimeException 及其子类以外的异常,均属于受查异常 。当然,用户自定义的 Exception 的子类,即用户自定义的异常也属受查异常。程序员在定义异常时,只要未明确声明定义的为 RuntimeException 的子类,那么定义的就是受查异常。
事务定义接口 TransactionDefinition 中定义了事务描述相关的三类常量:事务隔离级别、
事务传播行为、事务默认超时时限,及对它们的操作。
这些常量均是以ISOLATION_ 开头。即形如 ISOLATION_XXX 。
➢ DEFAULT 采用 DB 默认的事务隔离级别。 MySql 的默认为 REPEATABLE_READ;Oracle默认为 READ_COMMITTED 。
➢ READ_UNCOMMITTED 读未提交。未解决任何并发问题。
➢ READ_COMMITTED 读已提交。解决脏读,存在不可重复读与幻读。
➢ REPEATABLE_READ 可重复读。解决脏读、不可重复读,存在幻读
➢ SERIALIZABLE 串行化。不存在并发问题。
所谓事务传播行为是指,处于不同事务中的方法在相互调用时,执行期间事务的维护情
况。如, A 事务中的方法 doSome() 调用 B 事务中的方法 doOther(),在调用执行期间事务的维护情况,就称为事务传播行为。事务传播行为是加在方法上的。
事务传播行为常量都是以PROPAGATION_ 开头,形如 PROPAGATION_ XXX 。
PROPAGATION_REQUIRED
PROPAGATION_REQUIRES_NEW
PROPAGATION_SUPPORTS
PROPAGATION_MANDATORY
PROPAGATION_NESTED
PROPAGATION_NEVER
PROPAGATION_NOT_SUPPORTED
a、 PROPAGATION_ REQUIRED
指定的方法必须在事务内执行。若当前存在事务,就加入到当前事务中;若当前没有事
务,则创建一个新事务。这种传播行为是最常见的选择 ,也是 Spring 默认的事务传播行为。
如该传播行为加在doOther()方法上。若doSome()方法在调用doOther()方法时就是在事务内运行的,则doOther()方法的执行也加入到该事务内执行。若doSome()方法在调用doOther()方法时没有在事务内执行,则doOther()方法会创建一个事务,并在其中执行。
b、 PROPAGATION_ SUPPORTS
指定的方法支持当前事务,但若当前没有事务,也可以以非事务方式执行。
c、 PROPAGATION_ REQUIRES_NEW
总是新建一个事务,若当前存在事务,就将当前事务挂起,直到新事务执行完毕。
3)定义了默认事务超时时限
常量TIMEOUT_DEFAULT 定义了事务底层默认的超时时限, sql 语句的执行时长。
注意,事务的超时时限起作用的条件比较多,且超时的时间计算点较复杂。所以,该
值一般就使用默认值即可。
购买商品 trans_sale 项目
本例要实现购买商品,模拟用户下订单,向订单表添加销售记录,从商品表减少库存。
实现步骤:
Step1:创建数据库表
创建两个数据库表sale,goods
sale 销售表:
goods 商品表
goods 表数据
Step2:maven 依赖 pom.xml
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.11version>
<scope>testscope>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-contextartifactId>
<version>5.2.5.RELEASEversion>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-txartifactId>
<version>5.2.5.RELEASEversion>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.2.5.RELEASEversion>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
<version>3.5.1version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatis-springartifactId>
<version>1.3.1version>
dependency>
<dependency>
<groupId>mysqlgroupId>
<artifactId>mysql-connector-javaartifactId>
<version>5.1.9version>
dependency>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>druidartifactId>
<version>1.1.12version>
dependency>
dependencies>
添加插件:
<build>
<resources>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
resources>
<plugins>
<plugin>
<artifactId>maven-compiler-pluginartifactId>
<version>3.1version>
<configuration>
<source>12source>
<target>12target>
configuration>
plugin>
plugins>
build>
Step3:创建实体类
创建实体类 Sale 与 Goods
public class Sale {
private Integer id;
private Integer gid;
private Integer nums;
public class Goods {
private Integer id;
private String name;
private Integer amount;
private float price;
Step4:定义Dao接口
public interface SaleDao {
int insertSale(Sale sale);//添加销售记录
}
public interface GoodsDao {
int updateGoods(Goods goods);//更新库存
Goods selectGoods(Integer goodsId);//获取库存信息
}
Step5:定义Dao接口对应的sql映射文件
SaleDao.xml
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.gxust.dao.SaleDao">
<insert id="insertSale">
insert into sale(gid,nums) values(#{gid},#{nums})
insert>
mapper>
GoodsDao.xml
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.gxust.dao.GoodsDao">
<select id="selectGoods" resultType="Goods">
select id,name,amount,price from goods where id=#{id}
select>
<update id="updateGoods">
update goods set amount = amount - #{amount} where id = #{id}
update>
mapper>
Step6:定义异常类
public class NotEnoughException extends RuntimeException{
/**
* 定义Service层可能会抛出的异常类 NotEnoughtException
*/
public NotEnoughException() {
super();
}
public NotEnoughException(String message) {
super(message);
}
}
Step7:定义Service接口
public interface BuyGoodsService {
//用户购买商品
public void buy(Integer goodsId,Integer amount);
}
Step8:定义Service的实现类
public class BuyGoodsServiceImpl implements BuyGoodsService {
//传入GoodsDao的代理对象
private GoodsDao goodsDao;
//传入SaleDao的代理对象
private SaleDao saleDao;
public void setGoodsDao(GoodsDao goodsDao) {
this.goodsDao = goodsDao;
}
public void setSaleDao(SaleDao saleDao) {
this.saleDao = saleDao;
}
/**
* 模拟用户购买商品操作
* @param goodsId //购买的商品id
* @param amount //购买的商品数量
*/
@Override
public void buy(Integer goodsId, Integer amount) {
Sale sale = new Sale();
sale.setGid(goodsId);
sale.setNums(amount);
saleDao.insertSale(sale);//添加销售信息
Goods goods = goodsDao.selectGoods(goodsId);//查询数据库中是否存在此商品
if(goods == null){
throw new NullPointerException("无此商品");
}
if(goods.getAmount() < amount){
throw new NotEnoughException("库存不足");
}
//若商品存在且库存充足,则更新库存数量
goods = new Goods();
goods.setAmount(amount);
goods.setId(goodsId);
goodsDao.updateGoods(goods);
}
}
Step9:修改Spring配置文件内容
声明Mybatis对象
<context:property-placeholder location="classpath:jdbc.properties" />
<bean id="AlibabaDataSource" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close">
<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="AlibabaDataSource" />
<property name="configLocation" value="classpath:mybatis.xml" />
bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
<property name="basePackage" value="com.gxust.dao"/>
bean>
声明业务层对象
<bean id="buyService" class="com.gxust.service.BuyGoodsServiceImpl">
<property name="goodsDao" ref="goodsDao"/>
<property name="saleDao" ref="saleDao"/>
bean>
Step10:定义测试类
定义测试类MyTest。现在就可以在无事务代理的情况下运行了。
@Test
public void testTran(){
String configLocation = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(configLocation);
BuyGoodsService buyService = (BuyGoodsService) context.getBean("buyService");
buyService.buy(1002,2);
}
通过@Transactional
注解方式,可将事务织入到相应 public 方法中,实现事务管理。
@Transactional
的所有可选属性如下所示:
属性 | 作用 |
---|---|
propagation | 用于设置事务传播属性。该属性类型为 Propagation 枚举,默认值为Propagation.REQUIRED |
isolation | 用于设置事务的隔离级别。该属性类型为 Isolation 枚举,默认值为 Isolation.DEFAULT |
readOnly | 用于设置该方法对数据库的操作是否是只读的。该属性为 boolean,默认值为 false |
timeout | 用于设置本操作与数据库连接的超时时限。单位为秒,类型为 int,默认值为-1,即没有时限 |
rollbackFor | 指定需要回滚的异常类。类型为Class[],默认值为空数组。当然,若只有一个异常类时,可以不使用数组。 |
rollbackForClassName | 指定需要回滚的异常类类名。类型为String[],默认值为空数组。当然,若只有一个异常类时,可以不使用数组。 |
noRollbackFor | 指定不需要回滚的异常类。类型为Class[],默认值为空数组。当然,若只有一个异常类时,可以不使用数组。 |
noRollbackForClassName | 指定不需要回滚的异常类类名。类型为String[],默认值为空数组。当然,若只有一个异常类时,可以不使用数组。 |
需要注意的是,@Transactional 若用在方法上,只能用于 public 方法上。对于其他非 public 方法,如果加上了注解 @Transactional,虽然 Spring 不会报错,但不会将指定事务织入到该方法中。因为 Spring 会忽略掉所有非 public 方法上的 @Transaction 注解。
若@Transation 注解在类上,则表示该类上所有的方法均将在执行时织入事务。
实现注解的事务步骤:
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="AlibabaDataSource"/>
bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
/**
* 模拟用户购买商品操作
* @param goodsId //购买的商品id
* @param amount //购买的商品数量
* @Transactional //事务属性注解
*/
@Transactional(propagation = Propagation.REQUIRED,
rollbackFor = {NotEnoughException.class,NullPointerException.class}
)
@Override
public void buy(Integer goodsId, Integer amount) {
Sale sale = new Sale();
sale.setGid(goodsId);
sale.setNums(amount);
saleDao.insertSale(sale);//添加销售信息
Goods goods = goodsDao.selectGoods(goodsId);//查询数据库中是否存在此商品
if(goods == null){
throw new NullPointerException("无此商品");
}
if(goods.getAmount() < amount){
throw new NotEnoughException("库存不足");
}
//若商品存在且库存充足,则更新库存数量
goods = new Goods();
goods.setAmount(amount);
goods.setId(goodsId);
goodsDao.updateGoods(goods);
}
测试方法:
@Test
public void testTran(){
String configLocation = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(configLocation);
BuyGoodsService buyService = (BuyGoodsService) context.getBean("buyService");
buyService.buy(1001,50);
}
当客户购买商品数量超过库存量时,销售记录不会被写入数据库。
使用 XML 配置事务代理的方式的不足是,每个目标类都需要配置事务代理。当目标类
较多,配置文件会变得非常臃肿。
使用 XML 配置顾问方式可以自动为每个符合切入点表达式的类生成事务代理。其用法
很简单,只需将前面代码中关于事务代理的配置删除,再替换为如下内容即可。
Step1:项目准备,复制5.4中的项目,在此项目上做修改。
Step2:maven 依赖 pom.xml
新加入 aspectj 的依赖坐标
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-aspectsartifactId>
<version>5.2.5.RELEASEversion>
dependency>
Step3:在容器中添加事务管理器
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="AlibabaDataSource"/>
bean>
Step4:配置事务通知
<tx:advice id="buyAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="buy" propagation="REQUIRED" isolation="DEFAULT"
rollback-for="java.lang.NullPointerException,com.gxust.exception.NotEnoughException"/>
<tx:method name="add*" propagation="REQUIRED" isolation="DEFAULT" rollback-for="java.lang.Exception"/>
<tx:method name="*" propagation="SUPPORTS"/>
tx:attributes>
tx:advice>
Step5:配置增强器
指定将配置好的事务通知,织入给谁。
<aop:config>
<aop:pointcut id="servicePt" expression="execution(* *..service..*.*(..))"/>
<aop:advisor advice-ref="buyAdvice" pointcut-ref="servicePt"/>
aop:config>
Step6:修改测试类
测试类中要从容器中获取的是目标对象。
@Test
public void testBuy(){
String configLocation = "applicationContext.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(configLocation);
BuyGoodsService buyService = (BuyGoodsService) context.getBean("buyService");
buyService.buy(1001,50);
}
在 Web 项目中使用Spring框架,首先要解决在 web 层(这里指Servlet)中获取到 Spring 容器的问题。只要在 web 层获取到了 Spring 容器,便可从容器中获取到 Service 对象。
举例:在第四部分Spring集成Mybatis的源代码上修改
Step1:新建一个 Maven Project
模板类型:maven-archetype-webapp
Step2:复制代码,配置文件,jar
将第四部分项目中的以下内容复制到当前项目中:
(1 )Service 层、 Dao 层全部代码
(2)配置文件 applicationContext.xml 及 jdbc.properties mybatis.xml
(3)pom.xml
(4)加入 servlet ,jsp 依赖
在之前原有的 pom. xml 文件中再加入以下的内容:
<dependency>
<groupId>javax.servletgroupId>
<artifactId>javax.servlet-apiartifactId>
<version>4.0.1version>
<scope>providedscope>
dependency>
<dependency>
<groupId>javax.servlet.jspgroupId>
<artifactId>jsp-apiartifactId>
<version>2.2.1-b03version>
<scope>providedscope>
dependency>
<dependency>
<groupId>jstlgroupId>
<artifactId>jstlartifactId>
<version>1.2version>
dependency>
dependencies>
Step3:定义 index 页面
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<body>
<h2>Hello World!h2>
<form action="regservlet" method="post">
姓名:<input type="text" name="name"><br>
年龄:<input type="text" name="age"><br>
<input type="submit" value="注册">
form>
body>
html>
Step4 :定义 Register Servlet(重点代码)
@WebServlet(name = "regservlet", value = "/regservlet")
public class regservlet extends HttpServlet {
/**
*模拟用户注册功能
*/
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//设置接收请求参数编码
request.setCharacterEncoding("utf-8");
//接收请求参数
String strname = request.getParameter("name");
String strage = request.getParameter("age");
//指定Spring配置文件的位置和名称
String resource = "applicationContext.xml";
//创建Spring容器对象
ApplicationContext context = new ClassPathXmlApplicationContext(resource);
System.out.println("容器的信息"+context);
//获取service对象,执行业务方法
StudentService studentService = (StudentService) context.getBean("studentService");
Student student = new Student();
student.setName(strname);
student.setAge(Integer.parseInt(strage));
//调用Service方法
studentService.addStudent(student);
//显示处理结果的jsp
request.getRequestDispatcher("/result.jsp").forward(request,response);
}
}
Step5 :定义 success 页面
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>欢迎!title>
head>
<body>
恭喜您,注册成功;
body>
html>
Step6:注册 Servlet
通过注解来注册servlet
@WebServlet(name = "regservlet", value = "/regservlet")
Step7:运行结果分析
当表单提交,跳转到 success.jsp 后,多刷新几次页面,查看后台输出,发现每刷新一次
页面,就 new 出一个新的 Spring 容器。即,每提交一次请求,就会创建一个新的 Spring 容器。对于一个应用来说,只需要一个 Spring 容器即可。所以,将 Spring 容器的创建语句放在 Servlet 的 doGet() 或 doPost() 方法中是有问题的。
19-Aug-2021 21:54:38.453 淇℃伅 [http-nio-8080-exec-11] com.alibaba.druid.support.logging.JakartaCommonsLoggingImpl.info {dataSource-1} inited
容器的信息org.springframework.context.support.ClassPathXmlApplicationContext@7940deb6, started on Thu Aug 19 21:54:37 CST 2021
19-Aug-2021 21:54:47.608 淇℃伅 [http-nio-8080-exec-14] com.alibaba.druid.support.logging.JakartaCommonsLoggingImpl.info {dataSource-2} inited
容器的信息org.springframework.context.support.ClassPathXmlApplicationContext@8b71414, started on Thu Aug 19 21:54:47 CST 2021
19-Aug-2021 21:54:51.501 淇℃伅 [http-nio-8080-exec-19]
com.alibaba.druid.support.logging.JakartaCommonsLoggingImpl.info {dataSource-3} inited
容器的信息org.springframework.context.support.ClassPathXmlApplicationContext@6cca4ee9, started on Thu Aug 19 21:54:51 CST 2021
此时,可以考虑,将 Spring 容器的创建放在 Servlet 进行初始化时进行,即执行 init() 方
法时执行。并且, Servlet 还是单例多线程的 ,即一个业务只有一个 Servlet 实例,所有执行该业务的用户执行的都是这一个 Servlet 实例。这样, Spring 容器就具有了唯一性了。
但是,Servlet 是一个业务一个 Servlet 实例,即 LoginServlet 只有一个,但还会有
StudentServlet 、 TeacherServlet 等。每个业务都会有一个 Servlet ,都会执行自己的 init() 方法,也就都会创建一个 Spring 容器了。这样一来, Spring 容器就又不唯一了。
对于 Web 应用来说, ServletContext 对象是唯一的,一个 Web 应用,只有一个 ServletContext 对象, 该对象是在 Web 应用装载时初始化的 。 若将 Spring 容器的创建时机,放在 ServletContext 初始化时,就可以保证 Spring 容器的创建只会执行一次,也就保证了 Spring 容器在整个应用中的唯一性。
当Spring 容器创建好后,在整个应用的生命周期过程中, Spring 容器应该是随时可以被访问的。即,Spring容器应具有全局性。而放入ServletContext对象的属性,就具有应用的全局性。所以,将创建好的 Spring容器,以属性的形式放入到 ServletContext的空间中,就保证了 Spring 容器的全局性。
上述的这些工作,已经被封装在了如下的 Spring 的Jar包的相关API中:
spring–webweb–5.2.5.RELEASE
Step1:maven 依赖 pom.xml
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webartifactId>
<version>5.2.5.RELEASEversion>
dependency>
Step2:注册监听器 ContextLoaderListener
若要在 ServletContext 初始化时创建 Spring 容器,就需要使用监听器接口 ServletContextListener 对 ServletContext 进行监听。在 web.xml 中注册该监听器。
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>
listener>
Spring 为该监听器接口定义了一个实现类 ContextLoaderListener,完成了两个很重要的工作:创建容器对象,并将容器对象放入到了 ServletContext 的空间中。
打开 ContextLoaderListener 的源码。看到一共四个方法,两个是构造方法,一个初始化方法,一个销毁方法。
所以,在这四个方法中较重要的方法应该就是 contextInitialized(),context 初始化方法。
跟踪 initWebApplicationContext()方法,可以看到,在其中创建了容器对象。
并且,将创建好的容器对象放入到了 ServletContext 的空间中,Key 为一个常量:
WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE。
Step3:指定 Spring 配置文件的位置< context-param >
ContextLoaderListener 在对 Spring 容器进行创建时,需要加载 Spring 配置文件。其默认的 Spring 配置文件位置与名称为:WEB-INF/applicationContext.xml。但,一般会将该配置文件放置于项目的classpath下,即 src 下,所以需要在 web.xml 中对 Spring 配置文件的位置和名称进行指定。
<context-param>
<param-name>contextConfigLocationparam-name>
<param-value>classpath:applicationContext.xmlparam-value>
context-param>
从监听器 ContextLoaderListener 的父类 ContextLoader 的源码中可以看到其要读取的配置文件位置参数名称 contextConfigLocation。
Step4:获取 Spring 容器对象
在 Servlet 中获取容器对象的常用方式有两种:
//获取容器
String attr = WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE;
ApplicationContext context = (ApplicationContext) this.getServletContext().getAttribute(attr);
getRequiredWebApplicationContext(ServletContext sc)
//框架提供的方法,获取容器对象
WebApplicationContext context = WebApplicationContextUtils
.getRequiredWebApplicationContext(this.getServletContext());
查其源码,看其调用关系,就可看到其是从 ServletContext 中读取的属性值,即 Spring 容器。
以上两种方式,无论是使用哪种获取容器对象,刷新 success 页面后,可看到代码中使用的 Spring 容器均为同一个对象。