初识Spring5

Spring5

个人理解:spring两个重点ioc和aop,ioc减少耦合性,解耦,使代码更加灵活,对象的创建是由程序自己控制的.控制反转就是将对象的创建转移给了第三方。aop就是在不改变原有代码的情况下给添加操作。可以将日志记录、性能统计、安全控制、事务处理、异常处理等代码从业务逻辑代码中分离出来,放到一个非业务逻辑的方法中,进而改变这些行为的同时不影响业务逻辑代码;spring理念:使现有的技术更加容易使用,本身是一个大杂烩,整合了现有的技术框架!

Spring简介

搭建环境

官网:https://spring.io/projects/spring-framework#overview

Github: https://github.com/spring-projects/spring-framework

maven spring:


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

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

Spring的作用

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

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

Spring的组成

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Y7xhFmlF-1669789097802)(C:\Users\MU\Desktop\笔记\spring组成.jpg)]

IOC理论推导

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

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

我们使用一个Set接口实现,已经发生了革命性变化! 减少上下层的关联,减弱耦合性,使代码更加灵活

//private UserDao userDao = new UserDaoImpl();    //调用dao层
    private UserDao userDao;

    //利用set进行动态实现值的注入!不需要像以前一样手动修改写死的新建对象
    public void setUserDao(UserDao userDao) {
        this.userDao = userDao;
    }

    public void getUser(){
        userDao.getUser();
    }


public class MyTest {
    public static void main(String[] args) {
        //用户实际调用的是业务层,dao层他们不需要接触
        UserServiceImpl userService = new UserServiceImpl();

        //((UserServiceImpl) userService).setUserDao(new UserDaoImpl());
        userService.setUserDao(new UserDaoImpl());

        userService.getUser();
    }
}
  • 之前:程序是主动创建对象!控制权在程序员手上!(控制反转,思想转换)
  • 使用set注入后,程序不再具有主动性,而是变成了被动的接受对象!不需要程序员手动修改对象,可以动态改变。

IOC本质

控制反转(inversion of control), 是一种设计思想,DI(dependency injection依赖注入)是IOC的一种方法.未使用IOC的程序中,我们使用面向对象编程,对象的创建和对象之间的依赖关系完全硬编码在程序中,对象的创建是由程序自己控制的.控制反转就是将对象的创建转移给了第三方.

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

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

HelloSpring

配置bean


<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="hello" class="com.pojo.Hello">

        <property name="str" value="Spring"/>

    bean>
beans>

Spring配置文件简单理解

只需要通过下面的beans.xml文件中 ref="***"里面的对象,就能够切换功能输出,这样我们写的代码就可以不用去更改了,并且让用户只需要更改xml中相对应的值就可以完成所需业务需求,达到了IOC控制反转的思想:交给用户

<bean id="mysql" class="com.dao.UserMysqlImpl"/>
<bean id="oracle" class="com.dao.UserOracleImpl"/>

<bean id="UserServiceImpl" class="com.service.UserServiceImpl">
        <property name="userDao" ref="mysql"/>
    bean>

@Test
//获取AppLicationContext; 拿到spring容器
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");

//从容器中取出数据get
UserServiceImpl userService = (UserServiceImpl)context.getBean("UserServiceImpl");
userService.getUser();

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-D8mheukQ-1669789097803)(C:\Users\MU\Desktop\笔记\springbean的简单理解.jpg)]

使用Spring,我们可以彻底不用再去程序中改动了,要实现不同的操作,只需要在xml配置文件中进行修改所谓的IOC。

一句话搞定:对象由Spring 来创建,管理,装配!

IOC创建对象的方式

有参构造bean

bean默认使用无参构造方法创建对象!若类无无参构造方法,使用默认创建时会报错

有参构造bean

使用有参构造方法

  1. 下标赋值

    <bean id="user" class="com.pojo.User">
        
        <constructor-arg index="0" value="慕余"/>
    bean>
    
  2. 类型

    
    <bean id="user" class="com.pojo.User">
        <constructor-arg type="java.lang.String" value="慕余"/>
    bean>
    
  3. 参数名

    
    <bean id="user" class="com.pojo.User">
        <constructor-arg name="name" value="慕余"/>
    bean>
    

总结:在配置文件加载的时候,容器中管理的对象就已经被创建了,就是bean

Spring配置

别名


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

Bean的配置


    <bean id="user" class="com.pojo.User" name="user3">
        <property name="name" value="慕余"/>
    bean>

import

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

假设,现在项目中有多个人开发,负责不同的类开发,不同的类需要注册在不同的bean中,我们可以利用import将所有人的beans.xml合并为一个总的applicationContext.xml;

使用的时候,直接使用总的配置就可以了,这时候就需要improt进行导入整合

<import resource="beans.xml"/>
<import resource="beans2.xml"/>

如果两个文件中的bean有同名的,那么会按照导入顺序下面的会覆盖上面的

DI依赖注入

构造器注入

前面已经说过:即constructor-arg这个标签属性

<constructor-arg />

Set方式注入【重点】

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

【环境搭建】

  1. 复杂类型

    public class Student {
        private String name;
        private Address address;
        private  String[] book;
        private List<String> hobbys;
        private Map<String,String> card;
        private Set<String> games;
        private Student wife;
        private Properties info;
    

完善注入信息

   <bean id="address" class="com.pojo.Address">
    bean>

    <bean id="student" class="com.pojo.Student">

        <property name="name" value="易易"/>

        <property name="address" ref="address"/>

        <property name="book">
            <array>
                <value>水浒传value>
                <value>西游记value>
                <value>三国志value>
            array>
        property>

        <property name="hobbys">
            <list>
                <value>游戏value>
                <value>睡觉value>
                <value>看电影value>
            list>
        property>

        <property name="card">
            <map>
                <entry key="电话" value="13333333333"/>
                <entry key="啥呀" value="1654654550"/>
            map>
        property>

        <property name="games">
            <set>
                <value>1value>
                <value>2value>
                <value>3value>
            set>
        property>

        <property name="wife">
            <null>null>
        property>

        <property name="info">
            <props>
                <prop key="学号">123456789prop>
                <prop key="性别">prop>
                <prop key="username">whatprop>
                <prop key="password">123456prop>
            props>
        property>
    bean>

拓展方式注入

注意:单独放一个这个标签程序会报错

<bean>bean>

我们可以使用p命名空间和c命名空间进行注入

注意:使用p命名和c命名需要导入xml约束!

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

    <bean id="user" class="com.pojo.User" p:name="易易" p:age="20"/>


    <bean id="user2" class="com.pojo.User" c:age="20" c:name="易易"/>
@Test
    public void test2(){
        ApplicationContext context = new ClassPathXmlApplicationContext("userbeans.xml");
        User user = context.getBean("user2", User.class);
        System.out.println(user);
    }

bean的作用域

1.单例模式(Spring的默认机制)

    <bean id="user2" class="com.pojo.User" c:age="18" c:name="易易" scope="singleton"/>   singleton 单例模式

从容器中get的产生的对象相同,bean只注入一个对象

2.原型模式 每次从容器中get的时候,都会产生一个新的对象!

 <bean id="user2" class="com.pojo.User" c:age="18" c:name="易易" scope="prototype"/>

3.其余的request,session,application,这些个只能在web开发中用到!

Bean的自动装配

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

在spring中有三种自动装配的方式

  • 在xml中显示配置
  • 在java中显示配置
  • 隐式的自动装配bean【重点】

ByName自动装配

public class People {
    private Cat cat;
    private Dog dog;
    private String name;
        <bean id="cat" class="com.pojo.Cat">bean>
        <bean id="dog" class="com.pojo.Dog"/>
    
        <bean id="people" class="com.pojo.People" autowire="byName">
            <property name="name" value="易易"/>
        bean>

ByType自动配置

        <bean id="cat" class="com.pojo.Cat">bean>
        <bean id="dog" class="com.pojo.Dog"/>
    
        <bean id="people" class="com.pojo.People" autowire="byType">
            <property name="name" value="易易"/>
        bean>

小结

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

使用注解自动装配【重要】

要使用注解须知:

  1. 倒入约束,context约束

  2. 配置注解支持: context:annotation-config【重要】

    
    <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
                    http://www.springframework.org/schema/context/spring-context.xsd">
    
        <context:annotation-config/>
    
    beans>
    
  • @Autowired

​ 直接在属性上使用即可,也可以在set方法上面使用

//如果显示定义Autowired的required属性为false,说明这个对象可以为null,否则不允许为空
@Autowired
private Cat cat;
@Autowired(required = false)
private Dog dog;

使用Autowired我们可以不用编写Set方法了,前提是你这个自动装配的属性在IOC(Spirng)容器汇总存在,且符合名字byName!

  • @Qualifier

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

        @Autowired
        private Cat cat;
        @Autowired
        @Qualifier(value = "dog1111")//指定一个bean id为这个value的bean自动装配这个属性对象
        private Dog dog;
        private String name;
    
            <bean id="dog1111" class="com.pojo.Dog"/>
    
  • @Resource

        @Resource
        private Cat cat;
        @Resource(name = "dog2")
        private Dog dog;
    
  • @Nullable 字段标记了这个注解,说明这个字段可以为Null

小结:

@Resource和@Autowired的区别:

  • 都是用来自动装配的,都可以放在属性字段上
  • @Autowired默认byType方式实现,如果有Class相同的两个Bean,则通过byName方式实现,而且必须要求这个对象存在【常用】
  • @Resource默认通过byName方式实现,如果找不到名字,则通过byType实现!如果两个都找不到,才报错

使用注解开发

开启注解支持


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

在Spring4之后,要使用注解开发,必须保证aop的包导入!


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

里面包含aop的包!

使用注解需要导入context约束,增加注解的支持


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

一般注解类型

  1. @Autowired:自动通过类型、名字装配

    如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value=“xxx”)

  2. @Nullable:字段标记了这个注解,说明这个字段可以为null

  3. @Resource:自动通过类型、名字装配

  4. @Component:组件,放在类上,说明这个类被Spring管理了,就是bean

Component组件的使用,属性的注入

//在类上添加Component 组件   等价于
@Component
public class User {
    private  String name="易易";
}
//在属性或者set方法上添加@value("")  等价于
public class User {
    @value("易易")
    private  String name="易易";
    //或者
     @value("易易")
     public void setName(String name) {
        this.name = name;
    }
}

衍生的注解

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

  • dao 【@Repository】
  • service【@Service】
  • controller【@Controller】

这四个注解功能都是一样的,都是代表将某个类注册到Spring中,装配Bean

@Scope(“”):作用域,可以设置为单例模式singleton或者原型模式prototype

@Component
@Scope("singleton")
public class User {
    private  String name="易易";
    public void setName(String name) {
        this.name = name;
    }
}

小结:

xml与注解:

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

xml与注解最佳实践:

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

使用java的方式配置Spring

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

实体类

//注解表示这个类被Spring接管了,注册到了容器中
@Component
public class User {
    private String name;

    public String getName() {
        return name;
    }
    @Value("易易")//属性注入值
    public void setName(String name) {
        this.name = name;
    }
}

配置类

//@Configuration代表这是一个配置类,就像之前的beans.xml文件作用一样
//这个Config类也会被spring容器托管,注册到容器中,因为它本身就是一个@Conponent
@Configuration
@ComponentScan("com.pojo")//这个相当于bean.xml配置中的扫描包
@Import(Config2.class)//关联别的config配置类
public class Config {

    //注册一个bean,相当于之前写的一个bean标签
    //这个方法的名字就相当于bean标签中的id属性
    //这个方法的返回值相当于bean标签中的class属性
    @Bean
    public User getUser(){
        return new User();//返回值就是需要注入到bean的对象
    }
}

测试类

public class MyTest {
    public static void main(String[] args) {
        //如果完全使用了配置类方式去做,我们就只能通过AnnotationConfig 上下文来获取,通过配置类的class对象加载!
        ApplicationContext context=new AnnotationConfigApplicationContext(Config.class);
        User getUser= (User) context.getBean("getUser");
        System.out.println(getUser.getName());
    }
}

代理模式

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

代理模式的分类:

  • 静态代理
  • 动态代理
    • 动态代理是在不改变原有代码的基础上增加新的功能
    • 采用动态代理,可以在不知道该类要实现什么功能的情况下去,去适应类的变化,减少框架的耦合
    • 需要为一些类的方法添加新的功能,又不想大量修改这个类
    • 需要增加额外的功能,而且增加额外功能的类本身不确定
    • 使用动态代理可以在程序运行期间动态的获取被代理类中的所有方法,获取之后,便可以在代理类中对该方法进行加强

静态代理

角色分析:

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

代理类:在不改变原有代码的基础上,为真实角色增加一个代理类,来实现更多的需求。(在不改变原有的代码的情况下去实现新的需求)

代码步骤:

  1. 接口

    //出租房子
    public interface Rent {
        public void rent();
    }
    
  2. 真实角色

    //房东
    public class Host implements Rent{
    
        @Override
        public void rent() {
            System.out.println("房东要出租房子!");
        }
    }
    
  3. 代理角色

    //租房中介
    public class Proxy implements Rent{
    
        private Host host; 
    
        public Proxy() {
        }
    
        public Proxy(Host host) {
            this.host = host;
        }
    
        @Override
        public void rent() {
            host.rent();
            seeHouse();
            hetong
            fare();
        }
    
        //看房
        public void seeHouse(){
            System.out.println("中介带你看房");
        }
        //签合同
        public void hetong(){
            System.out.println("中介带你签合同");
        }
        //收中介费
        public void fare(){
            System.out.println("收中介费");
        }
    }
    
  4. 客户端访问代理角色

    //租客
    public class Client {
        public static void main(String[] args) {
            //房东要租房子
            Host host = new Host();
            //代理,中介帮房东租房子,中介代理角色会有一些附属操作!
            Proxy proxy = new Proxy(host);
    
            //你不用面对房东,直接找中介租房即可!
            proxy.rent();
        }
    }
    

代理模式的好处:

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

缺点:

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

聊聊AOP

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-pu8nmB4y-1669789097804)(C:\Users\MU\Desktop\笔记\聊聊AOP.jpg)]

动态代理

  • 动态代理和静态代理角色一样
  • 动态代理的代理类是动态生成的,不是我们直接写好的!
  • 动态代理分为两大类:基于接口的动态代理,基于类的动态代理
    • 基于接口—JDK动态代理
    • 基于类—cglib
    • java字节码实现—javassist

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

动态代理的好处:

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

动态获取代理对象

//用这个类,自动生成代理类!
public class ProxyInvocationHandler implements InvocationHandler {
    //被代理的接口
    private Object target;

    public void setTarget(Object target) {
        this.target = target;
    }

//         public static Object newProxyInstance(ClassLoader loader,Class[] interfaces,InvocationHandler h)
/*
                newProxyInstance,方法有三个参数:

                loader: 用哪个类加载器去加载代理对象

                interfaces:动态代理类需要实现的接口

                h:动态代理方法在执行时,会调用h里面的invoke方法去执行
    */
    //生成得到代理类
    public Object getProxy(){
        return Proxy.newProxyInstance(this.getClass().getClassLoader(),target.getClass().getInterfaces(),this);
    }

	/*
                invoke三个参数:

                proxy:就是代理对象,newProxyInstance方法的返回对象

                method:调用的方法

                args: 方法中的参数
	*/    
    //处理动态实例,并返回结果
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        //getName,获取使用的方法名
        log(method.getName());
        //动态代理的本质,就是使用反射机制实现!
        Object result=method.invoke(target,args);//进行实现target接口的真实对象的方法
        return result;
    }
    //添加代理动作
    public void log(String msg){
        System.out.println("执行了" + msg+"方法");
    }
}

public class Client {
    public static void main(String[] args) {
        //真实角色
        UserServiceImpl userService = new UserServiceImpl();
        //代理角色
        ProxyInvocationHandler handler = new ProxyInvocationHandler();
        //通过调用程序处理角色来处理我们要调用的接口对象
        handler.setTarget(userService);
        UserService proxy = (UserService) handler.getProxy();//动态生成代理角色
        proxy.delete();
    }
}

AOP

什么是AOP

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

1、AOP的作用

可以将日志记录、性能统计、安全控制、事务处理、异常处理等代码从业务逻辑代码中分离出来,放到一个非业务逻辑的方法中,进而改变这些行为的同时不影响业务逻辑代码;实现了减少重复代码以及模块间低耦合的目的,以此来达到专心处理业务逻辑代码,不用管日志记录、事务控制及权限控制等。

2、使用AOP的好处是什么?

  • Java EE程序员在编写具体的业务逻辑处理方法时,只需要关心核心的业务逻辑处理,既提高了工作效率,又使代码变得更简洁优雅。
  • 在日后的维护中由于业务逻辑代码与其它共有代码分开存放,而且共有代码是集中存放,从而是维护工作变得简单轻松。

Aop在Spring中的作用

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

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

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

实现Aop

  1. 依赖

    <dependency>
        <groupId>org.aspectjgroupId>
        <artifactId>aspectjweaverartifactId>
        <version>1.9.9.1version>
    dependency>
    
方式一:使用原生的spring API接口

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">


    <bean id="userService" class="com.service.UserServiceImpl">bean>
    <bean id="log" class="com.log.Log">bean>
    <bean id="afterLog" class="com.log.AfterLog">bean>



    <aop:config>


        <aop:pointcut id="pointcut" expression="execution(* com.service.UserServiceImpl.*(..))"/>

        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>   前置日志
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>    后置日志
    aop:config>
beans>

日志通知

public class Log implements MethodBeforeAdvice {

    //method:要执行的目标对象的方法
    //args:参数
    //target:目标
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了!");
    }
}

public class AfterLog implements AfterReturningAdvice {

    //returnValue:返回值
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
        System.out.println("执行了"+method.getName()+"方法,返回结果为:"+returnValue);
    }
}
自定义来实现AOP


    <bean id="diy" class="com.diy.DiyPointCut"/>
    <aop:config>

        <aop:aspect ref="diy">

        <aop:pointcut id="point" expression="execution(* com.service.UserServiceImpl.*(..))"/>



            <aop:before method="before" pointcut-ref="point"/>
            <aop:after method="after" pointcut-ref="point"/>
        aop:aspect>
    aop:config>
使用注解方式实现AOP

    <bean id="annotationPointCut" class="com.diy.AnnotationPointCut"/>

    <aop:aspectj-autoproxy/>
@Aspect //注解标注这个类是一个切面
public class AnnotationPointCut {

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

//        Signature signature = jp.getSignature();    //获得签名
//        System.out.println("signature" + signature);
        //执行方法
        Object proceed = jp.proceed();
        System.out.println("环绕后");
        System.out.println(proceed);
    }
}

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-X6XIHHlb-1669789097805)(C:\Users\MU\Desktop\笔记\aop注解开发.jpg)]

整合Mybatis

步骤

  1. 导入相关的jar包
    • junit
    • mybatis
    • mysql数据库
    • spring相关的
    • aop注入
    • mybatis-spring【new】
    • 导入依赖

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>java-springartifactId>
        <groupId>org.examplegroupId>
        <version>1.0-SNAPSHOTversion>
    parent>
    <modelVersion>4.0.0modelVersion>

    <artifactId>spring-10-mybatisartifactId>
    <dependencies>
        <dependency>
            <groupId>junitgroupId>
            <artifactId>junitartifactId>
            <version>4.12version>
        dependency>
        <dependency>
            <groupId>mysqlgroupId>
            <artifactId>mysql-connector-javaartifactId>
            <version>5.1.48version>
        dependency>
        <dependency>
            <groupId>org.mybatisgroupId>
            <artifactId>mybatisartifactId>
            <version>3.5.2version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-webmvcartifactId>
            <version>5.3.23version>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-jdbcartifactId>
            <version>5.3.23version>
        dependency>
        <dependency>
            <groupId>org.aspectjgroupId>
            <artifactId>aspectjweaverartifactId>
            <version>1.9.9.1version>
        dependency>
        <dependency>
            <groupId>org.mybatisgroupId>
            <artifactId>mybatis-springartifactId>
            <version>2.0.7version>
        dependency>
        <dependency>
            <groupId>org.projectlombokgroupId>
            <artifactId>lombokartifactId>
            <version>RELEASEversion>
            <scope>compilescope>
        dependency>
        
        <dependency>
            <groupId>log4jgroupId>
            <artifactId>log4jartifactId>
            <version>1.2.12version>
        dependency>
    dependencies>
    
    <build>
        <resources>
            <resource>
                <directory>src/main/resourcesdirectory>
                <includes>
                    <include>**/*.propertiesinclude>
                    <include>**/*.xmlinclude>
                includes>
                <filtering>truefiltering>
            resource>
            <resource>
                <directory>src/main/javadirectory>
                <includes>
                    <include>**/*.propertiesinclude>
                    <include>**/*.xmlinclude>
                includes>
                <filtering>truefiltering>
            resource>
        resources>
    build>
project>

mybatis-spring

  1. 编写数据源

  2. SqlSessionFactory

  3. SqlSessionTemplate

  4. 需要给接口加实现类【】

  5. 将自己写的实现类,注入到Spring中

  6. 测试

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-VP3ZnycH-1669789097805)(C:\Users\MU\Desktop\笔记\spring整合mybatis简单过程.jpg)]

spring-dao.xml (配置文件中有中文注析可能会出错)


<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd">


    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis??useSSL=true&useUnicode=true&characterEncoding=UTF-8"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
    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:com/mapper/UserMapper.xml"/>
    bean>

    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">

        <constructor-arg index="0" ref="sqlSessionFactory"/>
    bean>

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

beans>

对应以前的mybatis

导入资源
InputStream in = Resources.getResourceAsStream(resources);


    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis??useSSL=true&useUnicode=true&characterEncoding=UTF-8"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
    bean>

创建sqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(in);

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
    
 获取sqlSession,在spring整合中使用SqlSessionTemplate代替sqlSession
     SqlSession sqlSession = sqlSessionFactory.openSession(true);
    
        bean>

    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">

        <constructor-arg index="0" ref="sqlSessionFactory"/>
    bean>


实现类需要注入sqlSession
public class UserMapperImpl implements UserMapper {
    //我们所有的操作原来都使用sqlSession来执行,现在都使用sqlSessionTemplate;
    private SqlSessionTemplate sqlSession;

    public void setSqlSession(SqlSessionTemplate sqlSession){
        this.sqlSession=sqlSession;
    }
    public List<User> selectUser() {
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        return mapper.selectUser();
    }
}
        配置mapper时注入sqlSession
    <bean id="userMapper" class="com.mapper.UserMapperImpl">
        <property name="sqlSession" ref="sqlSession"/>
    bean>
    

text

    @Test
    public  void text(){
        ApplicationContext context = new ClassPathXmlApplicationContext("spring-dao.xml");
        UserMapper usermapper = context.getBean("userMapper", UserMapper.class);

        for (User u:usermapper.selectUser()) {
            System.out.println(u);
        }
    }

进阶

继承SqlSessionDaoSupport减少创建SqlSessionTemplate需要注册SqlSession

public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
    public List<User> selectUser() {
        return getSqlSession().getMapper(UserMapper.class).selectUser();
    }
}

可使用SqlSessionDaoSupport简化获取SqlSessionTemplate

spring-dao.xml中少了创建SqlSessionTemplate这一步
使用SqlSessionDaoSupport就不需要写这一个配置

    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">

        <constructor-arg index="0" ref="sqlSessionFactory"/>
    bean>

applicationContext.xml中bean对象直接创建SqlSessionFactory

    <bean id="userMapperTwo" class="com.mapper.UserMapperImpl2">
        <property name="sqlSessionFactory" ref="sqlSessionFactory"/>
    bean>

声明式事务

回顾事务

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

事务的ACID原则:

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

Spring中的事务管理

  • 声明式事务:AOP 事务:要么都成功,要么都失败!

    
        <bean id="transactionManger" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource"/>
        bean>
    
    
        <tx:advice id="txAdvice" transaction-manager="transactionManger">
    
    
            <tx:attributes>
    
                <tx:method name="add" propagation="REQUIRED"/>
                <tx:method name="*" propagation="REQUIRED"/>
            tx:attributes>
        tx:advice>
    
        <aop:config>
            <aop:pointcut id="txPoint" expression="execution(* com.mapper.*.*(..))"/>
            <aop:advisor advice-ref="txAdvice" pointcut-ref="txPoint"/>
        aop:config>
    
    • 编程式事务:需要在代码中,进行事物的管理

为什么需要事务?

  • 如果不配置事务,可能存在数据提交不一致的情况;
  • 如果我们不在Spring中去配置声明式事务,我们就需要在代码中手动配置事务;
  • 事务在项目开发中十分重要,涉及到数据的一致性和完整性问题,不容马虎!

你可能感兴趣的:(java,spring,数据库)