2002年,首次推出了Spring框架的雏形:interface21框架
2004年3月24日,Spring框架即以interface21框架为基础,正式发布了1.0版本
Rod Johnson,Spring Framework创始人,著名作者。 Rod在悉尼大学不仅获得了计算机学位,同时还获得了音乐学位。
spring理念:使现有的技术更加容易使用,简化复杂的企业级开发。
SSH: Struct2+Spring+Hibernate
SSM:SpringMVC+Spring+Mybatis
官网:https://spring.io/
官方下载地址:http://repo.spring.io/release/org/springframework/spring
GitHub:https://github.com/spring-projects/spring-framework
Maven
<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>
总结一句话:Spring就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架
发展了太久之后,违背了原来的理念,配置十分繁琐,人称:“配置地狱!”
在我们之前的业务中,用户的需求可能会影响我们原来的代码,我们需要根据用户的需求去修改原代码!如果程序代码量十分大,修改一次的成本代价十分昂贵!
我们使用一个set接口实现
public class UserServiceImpl implements UserService {
private UserMapper userMapper;
public UserMapper getUserMapper() {
return userMapper;
}
public void setUserMapper(UserMapper userMapper) {
this.userMapper = userMapper;
}
public void getUesr() {
userMapper.getUser();
}
}
在调用时
public static void main(String[] args) {
UserService userService = new UserServiceImpl();
((UserServiceImpl)userService).setUserMapper(new UserMapperOracleImpl());
userService.getUesr();
}
由用户传入一个UserDao实现类对象,根据用户需求,动态改变实现类
之前,程序是主动创建对象的,控制权在程序员手上
使用了set注入之后,程序不再具有主动性,而是变成了被动的接受对象
这是IOC的原型
IOC本质
控制反转(Inversion of Control),是一种设计思想,DI(依赖注入)是实现IoC的一种方法,也有人认为DI是IOC的另一种说法。没有IOC的程序中,我们使用面向对象编程,对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方,个人认为所谓的控制反转就是:获得依赖对象的方式反转了。
Spring容器在初始化时先读取配置文件,根据配置文件或元数据创建与组织对象存入容器中,程序使用时再从IOC容器中取出需要的对象
采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的
控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IOC容器,其实现方法是依赖注入(Dependency Injection,DI)
写了一个实体类
public class Hello {
private String str;
public String getStr() {
return str;
}
public void setStr(String str) {
this.str = str;
}
@Override
public String toString() {
return "Hello{" +
"str='" + str + '\'' +
'}';
}
}
编写配置文件 beans.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="hello" class="cn.codewei.pojo.Hello">
<property name="str" value="Spring"/>
bean>
beans>
使用Spring创建对象,在Spring中这些都称为Bean
在之前:类型 变量名 = new 类型();
Hello hello = new Hello();
现在:bean 等于是一个对象
id:变量名
class:new 对象 要创建的对象的全类名
property:相当于给对象中的属性设置一个值
name:属性名 value:属性值
测试
public class MyTest {
public static void main(String[] args) {
// 获取Spring的上下文对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
// 我们的对象现在都在Spring中管理了,我们要使用,直接去里面取出来就可以了!
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
测试结果
编写了一个实体类
public class User {
private String name;
public User(){
System.out.println("User的无参构造!");
}
public void show(){
System.out.println("name = " + name);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
编写配置文件beans.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="User" class="cn.codewei.pojo.User">
<property name="name" value="唐嫣"/>
bean>
beans>
测试
public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
}
}
测试结果
在读取配置文件,获取Spring上下文对象的时候,对象就已经创建
当去除无参构造方法时(定义有参构造进行覆盖),就会报错!
public class User {
private String name;
public User(String name){
}
public void show(){
System.out.println("name = " + name);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
编写实体类
public class User {
private String name;
public User(String name){
this.name = name;
}
public void show(){
System.out.println("name = " + name);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
编写配置文件beans.xml
方式一:下标赋值
<bean id="User" class="cn.codewei.pojo.User">
<constructor-arg index="0" value="唐嫣"/>
bean>
通过参数的索引,为参数赋值
方式二:通过类型赋值
<bean id="User" class="cn.codewei.pojo.User">
<constructor-arg type="java.lang.String" value="刘诗诗"/>
bean>
通过参数类型进行赋值,如果参数类型有重复时,比如两个String类型的参数,这种构造方式就不可以,所以该方法不推荐使用
方式三:参数名赋值
<bean id="User" class="cn.codewei.pojo.User">
<constructor-arg name="name" value="杨颖"/>
bean>
直接通过参数名,进行赋值
<alias name="User" alias="user"/>
<bean id="User" class="cn.codewei.pojo.User" name="user2 u2,u3;u4">
<constructor-arg name="name" value="杨颖"/>
bean>
id:bean的唯一标识符,也就是相当于对象名
class:bean对象所对应的类型全限定名(全类名,包名+类名)
name:也是别名,而且name可以同时取多个别名,以空格,逗号或分号分隔
这个import,一般用于团队开发使用,它可以将多个配置文件,导入合并为一个
假设,现在的项目中有多个人开发,这三个人负责不同的类开发,不同的类需要注册在不同的bean中,我们可以利用import,将所有人的beans.xml合并为一个总的xml配置,使用的时候直接使用总的配置就可以了!
张三
李四
王五
applicationContext.xml
<import resource="beans.xml"/>
<import resource="beans2.xml"/>
<import resource="beans3.xml"/>
就是上面所提到的
<constructor-arg index="0" value="唐嫣"/>
<constructor-arg type="java.lang.String" value="刘诗诗"/>
<constructor-arg name="name" value="杨颖"/>
三种有参构造创建对象的注入方式
【环境搭建】
复杂类型
public class Address {
private String address;
@Override
public String toString() {
return "Address{" +
"address='" + address + '\'' +
'}';
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
}
真实测试对象
public class Student {
private String name;
private Address address;
private String[] books;
private List<String> hobbys;
private Map<String,String> card;
private Set<String> games;
private String wife;
private Properties info;
Getter Setter
toString..
....
}
applicationContext.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="address" class="cn.codewei.pojo.Address">
<property name="address" value="山东"/>
bean>
<bean id="student" class="cn.codewei.pojo.Student">
<property name="name" value="唐嫣"/>
bean>
beans>
测试类
public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
Student student = (Student)context.getBean("student");
System.out.println(student.getName());
}
}
完善注入信息
<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="cn.codewei.pojo.Address">
<property name="address" value="山东"/>
bean>
<bean id="student" class="cn.codewei.pojo.Student">
<property name="name" value="唐嫣"/>
<property name="address" ref="address"/>
<property name="books">
<array>
<value>红楼梦value>
<value>西游记value>
<value>水浒传value>
<value>三国演义value>
array>
property>
<property name="hobbys">
<list>
<value>听歌value>
<value>跳舞value>
list>
property>
<property name="card">
<map>
<entry key="身份证" value="123456789"/>
<entry key="银行卡" value="789456123"/>
map>
property>
<property name="games">
<set>
<value>英雄联盟value>
<value>穿越火线value>
<value>绝地求生value>
set>
property>
<property name="wife">
<null/>
property>
<property name="info">
<props>
<prop key="学号">181051020220prop>
<prop key="性别">女prop>
<prop key="年龄">33prop>
props>
property>
bean>
beans>
新建一个实体类
public class User {
private String name;
private int age;
public User() {
}
public User(String name, int age) {
this.name = name;
this.age = age;
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
", age=" + age +
'}';
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
1. p命名空间注入
导入p命名空间
xmlns:p="http://www.springframework.org/schema/p"
可以直接注入属性的值,p相当于property
<bean id="user" class="cn.codewei.pojo.User" p:name="唐嫣" p:age="18"/>
p命名空间对应的是set注入
2. c命名空间注入
导入c命名空间
xmlns:c="http://www.springframework.org/schema/c"
c命名空间对应的是构造器注入,使用c命名空间注入,必须要有有参构造
<bean id="user2" class="cn.codewei.pojo.User" c:name="唐嫣" c:age="32"/>
1. singleton:单例模式(Spring默认机制)
<bean id="user" class="cn.codewei.pojo.User" scope="singleton">
<property name="name" value="唐嫣"/>
<property name="age" value="23"/>
bean>
@Test
public void mytest(){
ApplicationContext context = new ClassPathXmlApplicationContext("userbeans.xml");
User user = (User)context.getBean("user");
User user2 = context.getBean("user", User.class);
System.out.println(user==user2);
}
测试结果
通过同一个bean,从容器中得到的对象都是同一个,因为在获得spring上下文对象ApplicationContext的时候对象就已经创建了
2. prototype:原型模式
<bean id="user" class="cn.codewei.pojo.User" scope="prototype">
<property name="name" value="唐嫣"/>
<property name="age" value="23"/>
bean>
@Test
public void mytest(){
ApplicationContext context = new ClassPathXmlApplicationContext("userbeans.xml");
User user = (User)context.getBean("user");
User user2 = context.getBean("user", User.class);
System.out.println(user==user2);
}
测试结果
通过同一个bean,从容器中getBean得到的对象都是不同的
3. 其余的request,session,application这些只能在web开发中使用到!
在Spring中有三种装配的方式:
环境搭建:一个人有两个宠物!
public class Dog {
public void shout(){
System.out.println("wang~wang~wang~");
}
}
public class Cat {
public void shout(){
System.out.println("miao~miao~miao~");
}
}
public class Person {
private Dog dog;
private Cat cat;
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "Person{" +
"dog=" + dog +
", cat=" + cat +
", name='" + name + '\'' +
'}';
}
public Dog getDog() {
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public Cat getCat() {
return cat;
}
public void setCat(Cat cat) {
this.cat = cat;
}
}
byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的bean的id
<bean id="dog" class="cn.codewei.pojo.Dog"/>
<bean id="cat" class="cn.codewei.pojo.Cat"/>
<bean id="person" class="cn.codewei.pojo.Person" autowire="byName">
<property name="name" value="唐嫣"/>
bean>
当容器中id没有和自己对象set方法后面的值对应时,就会装配失败!
byType:会自动在容器上下文中查找,和自己对象属性类型相同的Bean,在容器中,只要有和自己对象属性类型相同的bean就会自动装配,但容器中有多个和自己属性类型相同时,就会报错
<bean id="dog" class="cn.codewei.pojo.Dog"/>
<bean id="cat" class="cn.codewei.pojo.Cat"/>
<bean id="person" class="cn.codewei.pojo.Person" autowire="byType">
<property name="name" value="唐嫣"/>
bean>
小结:
jdk1.5支持注解,Spring2.5支持注解
要使用注解须知:
导入约束和约束的支持
配置注解的支持
<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:annotation-config/>
beans>
@Autowired
是通过byType的方式进行自动装配的,直接在属性或set方法上使用即可!
使用Autowired注解是可以省略set方法的,前提是你这个自动装配的属性在IOC(Spring)容器中存在且符合类型byType
<context:annotation-config/>
<bean id="dog" class="cn.codewei.pojo.Dog"/>
<bean id="cat" class="cn.codewei.pojo.Cat"/>
<bean id="person" class="cn.codewei.pojo.Person"/>
public class Person {
@Autowired
private Dog dog;
@Autowired
private Cat cat;
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "Person{" +
"dog=" + dog +
", cat=" + cat +
", name='" + name + '\'' +
'}';
}
public Dog getDog() {
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public Cat getCat() {
return cat;
}
public void setCat(Cat cat) {
this.cat = cat;
}
}
科普:
@Nullable 字段标记了这个注解,说明这个字段可以为null
public @interface Autowired {
boolean required() default true;
}
@Autowired注解可以给一个属性required,默认为true
@Autowired(required = false)
false:说明这个对象可以为null
true:对象不可以为null
@Qualifier(value=“xxx”)
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解完成的时候,我们可以使用@Qualifier(value=“xxx”)去配合@Autowired的使用,指定一个唯一的bean对象注入
public class Person {
@Autowired
@Qualifier(value = "dog22")
private Dog dog;
@Autowired
@Qualifier(value = "cat1123")
private Cat cat;
private String name;
Getter Setter
...
}
@Resource
先通过byName的方式查找,如果找不到,再通过byType的方式查找
可以指定一个name,去查找对应的id,如
@Resource(name = "xxx")
小结:
@Resource和@Autowired的区别:
再Spring4之后,要使用注解开发,必须保证AOP的包导入了
<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="cn.codewei.pojo"/>
<context:annotation-config/>
beans>
bean
@Component
// 等价于:
// Component : 组件
@Component
public class User {
public String name="唐嫣";
}
放在类上,说明这个类被Spring管理了,就是bean,id为其类名的小写
属性如何注入
@Value
// 等价于:
@Component
public class User {
@Value("唐嫣")
public String name;
}
衍生的注解
@Component有几个衍生注解,我们在web开发中,会按照MVC三层架构分层!
这四个注解功能都是一样的,都是代表将某个类注册到Spring容器中,装配Bean
自动装配
@Autowired:自动装配通过类型,名字
如果Autowired不能唯一自动装配上属性,则需要通过@Qulifier(value=“xxx”)指定bean的id
@Nullable:字段标记了这个注解,说明这个字段可以为null
@Resource:自动装配通过名字,类型
作用域
@Scope(“singleton”) 单例
@Scope(“prototype”) 原型
小结
xml与注解最佳实践:
xml用来管理bean
注解用来完成属性的注入
我们在使用的过程中,只需要注意一个问题,必须让注解生效,就需要开启注解的支持
<context:component-scan base-package="cn.codewei"/>
<context:annotation-config/>
我们现在要完全不使用Spring的xml配置了,全权交给Java来做!
JavaConfig是Spring的一个子项目,在Spring4之后,它成为了一个核心功能
要写一个配置类,如
@Configuration
public class MyConfig {
@Bean
public User user(){
return new User();
}
}
要放入Spring容器中的类:
@Component
public class User {
@Value("唐嫣")
private String name;
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
'}';
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
配置类也会被Spring容器托管,注册到容器中,因为他本来就是一个@Component
@Configuration:代表这是一个配置类,和之前的beans.xml一样的,加在类上
@ComponentScan(“cn.codewei.pojo”):扫描包。加在类上
@Bean:注册Bean,就相当于我们之前写的bean标签,这个方法的名字就相当于bean标签的id属性,这个方法的返回值,就相当于bean标签的class属性。加在方法上
@Import(配置类.class):引用配置类,相当于import标签。加在类上
如果完全使用的配置类方式去做,我们就要通过
ApplicationContext context = new AnnotationConfigApplicationContext(配置类.class);
来获取Spring的上下文对象ApplicationContext
配置类可以存在多个
这种纯Java的配置方式,在SpringBoot中随处可见!!
为什么要学习代理模式?
因为这是SpringAOP的底层!!【SpringAOP和SpringMVC】
代理模式的分类:
代理角色(中介)和真实的角色(房东)有共同的目标,就是出租房子,所以代理角色(中介)代理真实的角色(房东),就要实现和真实的角色(房东)相同的接口,来保证目标是相同的
角色分析:
代码步骤:
接口
// 租房的接口
public interface Rent {
public void rent();
}
真实角色
// 房东
public class Host implements Rent {
public void rent() {
System.out.println("房东要出租房子!");
}
}
代理角色
// 代理,中介
public class Proxy implements Rent{
private Rent host;
public Proxy() {
}
public Proxy(Host host) {
this.host = host;
}
public void rent() {
host.rent();
}
public void seeHouse(){
System.out.println("看房");
}
public void hetong(){
System.out.println("签租赁合同");
}
public void free(){
System.out.println("收中介费");
}
}
客户端访问代理角色
public class Client {
public static void main(String[] args) {
// 房东要出租房子
Host host = new Host();
// 代理,中介帮房东出租房子
// 代理角色一般会有一些附属操作,增强功能
Proxy proxy = new Proxy(host);
// 租房的人,不用面对房东,直接找中介租房即可
proxy.rent();
// 这是代理角色(中介)做的附属操作,就是对功能的增强
proxy.seeHouse();
proxy.hetong();
proxy.free();
}
}
代理模式的好处:
代理模式的缺点:
对我们平常的业务操作,增删改查增加日志输出!
我们不能改动原有的代码,在公司中改动原有的业务代码是大忌!!所以我们使用代理模式
接口
public interface UserService {
public void add();
public void delete();
public void update();
public void query();
}
接口真实的实现类
public class UserServiceImpl implements UserService{
public void add() {
System.out.println("增加了一个用户");
}
public void delete() {
System.out.println("删除了一个用户");
}
public void update() {
System.out.println("更改了一个用户");
}
public void query() {
System.out.println("查询了一个用户");
}
}
代理对象(代理类)
public class Proxy implements UserService {
private UserService userServiceImpl;
public void setUserServiceImpl(UserService userServiceImpl) {
this.userServiceImpl = userServiceImpl;
}
// 日志方法
public void log(String msg){
System.out.println("使用了"+msg+"方法");
}
public void add() {
log("add");
userServiceImpl.add();
}
public void delete() {
log("delete");
userServiceImpl.delete();
}
public void update() {
log("update");
userServiceImpl.update();
}
public void query() {
log("query");
userServiceImpl.query();
}
}
客户访问代理角色
public class Client {
public static void main(String[] args) {
UserService userService = new UserServiceImpl();
Proxy proxy = new Proxy();
proxy.setUserServiceImpl(userService);
proxy.add();
}
}
需要了解两个类:Proxy:代理,InvocationHandler:调用处理程序
动态代理的好处:
代码实现:
接口
public interface UserService {
public void add();
public void delete();
public void update();
public void query();
}
真实对象实现类
public class UserServiceImpl implements UserService {
public void add() {
System.out.println("增加了一个用户");
}
public void delete() {
System.out.println("删除了一个用户");
}
public void update() {
System.out.println("更改了一个用户");
}
public void query() {
System.out.println("查询了一个用户");
}
}
处理程序
public class ProxyInvocationHandler implements InvocationHandler {
private Object target;
public void setTarget(Object target) {
this.target = target;
}
public Object getProxy(){
return Proxy.newProxyInstance(target.getClass().getClassLoader(),target.getClass().getInterfaces(),this);
}
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
System.out.println("调用了"+method.getName()+"方法");
Object result = method.invoke(target, args);
return result;
}
}
客户端动态生成代理对象,调用方法
public class Client {
public static void main(String[] args) {
UserService userService = new UserServiceImpl();
ProxyInvocationHandler proxyInvocationHandler = new ProxyInvocationHandler();
proxyInvocationHandler.setTarget(userService);
UserService proxy =(UserService) proxyInvocationHandler.getProxy();
proxy.add();
proxy.delete();
}
}
AOP为Aspect Oriented Programming的缩写,意为:面向切面,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
提供声明事务,允许用户自定义切面
SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice
通知类型 | 连接点 | 实现接口 |
---|---|---|
前置通知 | 方法前 | org.springframework.aop.MethodBeforeAdvice |
后置通知 | 方法后 | org.springframework.aop.AfterReturningAdvice |
环绕通知 | 方法前后 | org.aopalliance.intercept.MethodInterceptor |
异常抛出通知 | 方法抛出异常 | org.springframeword.aop.ThrowsAdvice |
引介通知 | 类中增加新的方法属性 | org.springframeword.aop.IntroductionInterceptor |
即AOP在不改变原有代码的情况下,去增加新的功能
【重点】使用AOP织入,需要导入一个依赖包!
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.5version>
dependency>
方式一:使用spring的API接口【主要是Spring接口实现】
定义一个类,实现接口
public class Log implements MethodBeforeAdvice {
// method: 要执行的目标对象的方法
// objects:参数
// o:目标对象
public void before(Method method, Object[] objects, Object o) throws Throwable {
System.out.println(o.getClass().getName()+"的"+method.getName()+"被执行了");
}
}
在applicationContext.xml中配置AOP
需要导入AOP的约束
<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 id="userServiceImpl" class="cn.codewei.service.UserServiceImpl"/>
<bean id="log" class="cn.codewei.log.Log"/>
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* cn.codewei.service.UserServiceImpl.*(..))"/>
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
aop:config>
beans>
测试
public class MyTest {
public static void main(String[] args) {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userServiceImpl = (UserService) applicationContext.getBean("userServiceImpl");
userServiceImpl.add();
}
}
测试结果
方式二:自定义来实现AOP【主要是切面定义】
定义一个普通的类(方法名自定义)
public class DiyPointCut {
public void before(){
System.out.println("===============方法执行前===============");
}
public void after(){
System.out.println("===============方法执行后===============");
}
}
在applicationContext.xml中配置AOP
<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 id="userServiceImpl" class="cn.codewei.service.UserServiceImpl"/>
<bean id="afterLog" class="cn.codewei.log.AfterLog"/>
<bean id="log" class="cn.codewei.log.Log"/>
<bean id="diyPointCut" class="cn.codewei.diy.DiyPointCut"/>
<aop:config>
<aop:aspect ref="diyPointCut">
<aop:pointcut id="pointcut" expression="execution(* cn.codewei.service.UserServiceImpl.*(..))"/>
<aop:after method="after" pointcut-ref="pointcut"/>
<aop:before method="before" pointcut-ref="pointcut"/>
aop:aspect>
aop:config>
beans>
测试
public class MyTest {
public static void main(String[] args) {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userServiceImpl = (UserService) applicationContext.getBean("userServiceImpl");
userServiceImpl.add();
}
}
测试结果
方式三:使用注解实现
@Aspect 标注这个类是一个切面,加在类上
@Before 在切入点前执行,加在方法上
@After 在切入点后执行,加在方法上
@Around 环绕增强,加在方法上 可以接收一个参数:ProceedingJoinPoint
@Aspect
public class AnnotationPointCut {
@Before("execution(* cn.codewei.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("==========方法执行前==========");
}
@After("execution(* cn.codewei.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("==========方法执行后==========");
}
}
使用注解同样需要applicationContext.xml配置
<bean id="annotationPointCut" class="cn.codewei.diy.AnnotationPointCut"/>
<aop:aspectj-autoproxy/>
步骤:
导入相关jar包
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.12version>
<scope>testscope>
dependency>
<dependency>
<groupId>mysqlgroupId>
<artifactId>mysql-connector-javaartifactId>
<version>8.0.19version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
<version>3.5.4version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.2.6.RELEASEversion>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>4.1.2.RELEASEversion>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatis-springartifactId>
<version>2.0.4version>
dependency>
<dependency>
<groupId>org.projectlombokgroupId>
<artifactId>lombokartifactId>
<version>1.18.12version>
dependency>
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.5version>
dependency>
dependencies>
注意:在maven中存在的资源(配置文件导出问题)
<build>
<resources>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.xmlinclude>
<include>**/*.propertiesinclude>
includes>
<filtering>truefiltering>
resource>
<resource>
<directory>src/main/resourcesdirectory>
<includes>
<include>**/*.xmlinclude>
<include>**/*.propertiesinclude>
includes>
<filtering>truefiltering>
resource>
resources>
build>
编写配置文件
测试
需要导入一些新的包 spring-jdbc,mybatis-spring
创建一个新的配置文件,spring-dao.xml
编写数据源配置
这里使用的是spring提供的jdbc
<bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC"/>
<property name="username" value="root"/>
<property name="password" value="shw123zxc"/>
bean>
SqlSessionFactory配置
<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:cn/codewei/dao/*.xml"/>
bean>
mybatis核心配置文件中的内容都可以写在此处,但我们一般会在核心配置文件中配置别名和settings
SqlSessionTemplate配置
SqlSessionTemplate和SqlSession相同,只是改了个名字
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory"/>
bean>
写接口的实现类
public class UserMapperImpl implements UserMapper {
// 我们的所有操作都使用sqlSession执行在之前
// 现在都是以SqlSessionTemplate 和sqlsession是一样的 只是换了个名字
private SqlSessionTemplate sqlSessionTemplate;
public void setSqlSessionTemplate(SqlSessionTemplate sqlSessionTemplate) {
this.sqlSessionTemplate = sqlSessionTemplate;
}
public List<User> showUser() {
UserMapper mapper = sqlSessionTemplate.getMapper(UserMapper.class);
List<User> users = mapper.showUser();
return users;
}
}
将实现类放入IOC中
<bean id="userMapperImpl" class="cn.codewei.dao.UserMapperImpl">
<property name="sqlSessionTemplate" ref="sqlSession"/>
bean>
一般我们把bean放入applicationContext.xml配置文件中统一管理,spring-dao.xml专门用来管理mybatis的配置,在applicationContext.xml中使用import引入其他配置文件
测试
@Test
public void showUserTest() throws IOException {
ApplicationContext classPathXmlApplicationContext = new ClassPathXmlApplicationContext("spring-dao.xml");
UserMapper userMapperImpl = (UserMapper)classPathXmlApplicationContext.getBean("userMapperImpl");
List<User> users = userMapperImpl.showUser();
for (User user : users) {
System.out.println(user);
}
}
另一种方式:不再用在实现类中通过setter方法注入sqlSessionTemplate,而是继承SqlSessionDaoSupport
如:
public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
public List<User> showUser() {
UserMapper mapper = getSqlSession().getMapper(UserMapper.class);
return mapper.showUser();
}
}
在spring-dao.xml中配置
<bean id="userMapperImpl2" class="cn.codewei.dao.UserMapperImpl2">
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
bean>
需要注入sqlSessionFactory,因为SqlSessionDaoSupport需要注入
方式三:不需要写实现类,也不用配置sqlSessionTemplate
配置dao接口扫描包,动态实现Dao接口注入到Spring中
<!--配置dao接口扫描包,动态的实现了Dao接口注入到Spring-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!--注入sqlSessionFactory-->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
<!--要扫描的dao包-->
<property name="basePackage" value="cn.codewei.dao"/>
</bean>
事务的ACID原则:
在配置文件中配置声明事务,开启spring处理事务的功能
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<constructor-arg name="dataSource" ref="datasource"/>
bean>
配置事务通知
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="add" propagation="REQUIRED"/>
<tx:method name="delete" propagation="REQUIRED"/>
<tx:method name="update" propagation="REQUIRED"/>
<tx:method name="query" read-only="true"/>
<tx:method name="*" propagation="REQUIRED"/>
tx:attributes>
tx:advice>
配置事务切入
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* cn.codewei.dao.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut"/>
aop:config>
为什么需要事务?
如果不配置事务,可能存在数据提交不一致的清空
如果我们不在spring中去配置声明式事务,我们就需要在代码中手动配置事务
serMapper.class);
return mapper.showUser();
}
}
在spring-dao.xml中配置
```xml
需要注入sqlSessionFactory,因为SqlSessionDaoSupport需要注入
事务的ACID原则:
在配置文件中配置声明事务,开启spring处理事务的功能
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<constructor-arg name="dataSource" ref="datasource"/>
bean>
配置事务通知
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="add" propagation="REQUIRED"/>
<tx:method name="delete" propagation="REQUIRED"/>
<tx:method name="update" propagation="REQUIRED"/>
<tx:method name="query" read-only="true"/>
<tx:method name="*" propagation="REQUIRED"/>
tx:attributes>
tx:advice>
配置事务切入
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* cn.codewei.dao.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut"/>
aop:config>
为什么需要事务?