【狂神说】spring笔记

1、Spring

1.1、简介

Spring : 春天 —>给软件行业带来了春天

2002年,Rod Jahnson首次推出了Spring框架雏形interface21框架。

2004年3月24日,Spring框架以interface21框架为基础,经过重新设计,发布了1.0正式版。

很难想象Rod Johnson的学历 , 他是悉尼大学的博士,然而他的专业不是计算机,而是音乐学。

Spring理念 : 使现有技术更加实用 , 本身就是一个大杂烩 , 整合现有的框架技术!

SSH: Struct2+Spring+Hibernate

SSM: SpringMvc+Spring+Mybatis

官网 : http://spring.io/

官方下载地址 : https://repo.spring.io/libs-release-local/org/springframework/spring/

中文文档:https://www.docs4dev.com/docs/zh/spring-framework/5.1.3.RELEASE/reference

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>5.2.5.RELEASE</version>
</dependency>

1.2、优点

1、Spring是一个开源免费的框架 (容器 )!

2、Spring是一个轻量级的框架 , 非侵入式的 !

**3、控制反转 IOC , 面向切面 AOP!(重点

4、对事物的支持 , 对框架整合的支持

总结:

Spring是一个轻量级的控制反转(IOC)和面向切面(AOP)的容器(框架)。

1.3、组成

Spring 框架是一个分层架构,由 7 个定义良好的模块组成。Spring 模块构建在核心容器之上,核心容器定义了创建、配置和管理 bean 的方式 .

在这里插入图片描述

核心容器:核心容器提供 Spring 框架的基本功能。核心容器的主要组件是 BeanFactory,它是工厂模式的实现。BeanFactory 使用控制反转(IOC) 模式将应用程序的配置和依赖性规范与实际的应用程序代码分开。

Spring 上下文:Spring 上下文是一个配置文件,向 Spring 框架提供上下文信息。Spring 上下文包括企业服务,例如 JNDI、EJB、电子邮件、国际化、校验和调度功能。

Spring AOP:通过配置管理特性,Spring AOP 模块直接将面向切面的编程功能 , 集成到了 Spring 框架中。所以,可以很容易地使 Spring 框架管理任何支持 AOP的对象。Spring AOP 模块为基于 Spring 的应用程序中的对象提供了事务管理服务。通过使用 Spring AOP,不用依赖组件,就可以将声明性事务管理集成到应用程序中。

Spring DAO:JDBC DAO 抽象层提供了有意义的异常层次结构,可用该结构来管理异常处理和不同数据库供应商抛出的错误消息。异常层次结构简化了错误处理,并且极大地降低了需要编写的异常代码数量(例如打开和关闭连接)。Spring DAO 的面向 JDBC 的异常遵从通用的 DAO 异常层次结构。

Spring ORM:Spring 框架插入了若干个 ORM 框架,从而提供了 ORM 的对象关系工具,其中包括 JDO、Hibernate 和 iBatis SQL Map。所有这些都遵从 Spring 的通用事务和 DAO 异常层次结构。

Spring Web 模块:Web 上下文模块建立在应用程序上下文模块之上,为基于 Web 的应用程序提供了上下文。所以,Spring 框架支持与 Jakarta Struts 的集成。Web 模块还简化了处理多部分请求以及将请求参数绑定到域对象的工作。

Spring MVC 框架:MVC 框架是一个全功能的构建 Web 应用程序的 MVC 实现。通过策略接口,MVC 框架变成为高度可配置的,MVC 容纳了大量视图技术,其中包括 JSP、Velocity、Tiles、iText 和 POI。

2、IOC理论推导

原始:!!!

1、UserDao接口

public interface UserDao {
    void getUser();
}

2、UserDaoImpl实现类

public class UserDaoImpl implements UserDao{
    public void getUser() {
        System.out.println("默认获取用户的数据");
    }
}

3、UserService接口

public interface UserService {
    void getUser();
}

4、UserServiceImpl业务实现类

public class UserServiceImpl implements UserService{
	private UserDao userDao=new UserDaoMysqlImpl();
  	public void getUser() {
        userDao.getUser();
    }
}

5、测试

public void Mytest(){
   UserService userService=new UserServiceImpl();
   userService.getUser();
}

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

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

public class UserServiceImpl implements UserService{


//    private UserDao userDao=new UserDaoMysqlImpl();

    private  UserDao userDao;

    //利用set进行动态实现值的注入
    public void setUserDao(UserDao userDao) {
        this.userDao = userDao;
    }

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

之前,程序是主动创建对象!控制权在程序员手上!

使用set注入后,程序不在具有主动性,而是变成了被动的接受对象!!

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

3、HelloSpring

3.1、导入jar包

注 : spring 需要导入commons-logging进行日志记录 . 我们利用maven , 他会自动下载对应的依赖项 .

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>5.1.10.RELEASE</version>
</dependency>

3.2、编写代码

1、实体类

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 + '\'' +
                '}';
    }
}

2、beans.xml配置文件

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

<!--使用spring来创建对象,在spring这些都称为bean-->
<!--  类型 变量名 =new 类型();
      Hello hello=new hello();


      id=变量名
      class=new的对象
      property 相当于给对象中的属性设置值
      -->

    <bean id="hello" class="com.li.pojo.hello">
        <property name="str" value="Spring"></property>
    </bean>

</beans>

3、测试

public void test(){
    //解析beans.xml文件 , 生成管理相应的Bean对象
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    //getBean : 参数即为spring配置文件中bean的id .
    Hello hello = (Hello) context.getBean("hello");
    hello.show();
}

4、IOC创建对象的方式

4.1、通过无参构造方法来创建

1、实体类

public class User {
    private  String name;

    public User(){
        System.out.println("User的无参构造");
    }


    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

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

2、beans.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
 
    <bean id="user" class="com.li.pojo.User">
        <property name="name" value="小李"/>
    </bean>
</beans>

3、测试

public void test(){
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    //在执行getBean的时候, user已经创建好了 , 通过无参构造
    User user = (User) context.getBean("user");
    //调用对象的方法 .
    user.show();
}

4.2、通过有参构造方法来创建

1、实体类

public class User {
 
    private String name;
 
    public UserT(String name) {
        this.name = name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public void show(){
        System.out.println("name="+ name );
    }
 
}

2、benas.xml配置文件:三种方法

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

  
<!-- 1、有参:下标赋值-->  
  <bean id="user" class="com.li.pojo.User">
        <constructor-arg index="0" value="小刘子"></constructor-arg>
    </bean>

  
  <!--2、有参:通过类型创建,不建议使用! -->
  <bean id="user" class="com.li.pojo.User">
        <constructor-arg type="java.lang.String" value="小刘子1"></constructor-arg>
    </bean>

  
<!--3、  有参:直接通过参数名来设置-->
    <bean id="user" class="com.li.pojo.User">
        <constructor-arg name="name" value="小刘子"></constructor-arg>
    </bean>

</beans>

3、测试

import com.li.pojo.User;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class  Mytest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");

        User user = (User) context.getBean("user");
        user.show();
    }
}

5、Spring配置

5.1、别名

alias 设置别名 , 为bean设置别名 , 可以设置多个别名

<!--    别名-->
    <alias name="user" alias="user2"></alias>

5.2、bean的配置

<!--bean就是java对象,由Spring创建和管理-->
 
<!--
    id 是bean的标识符,要唯一,如果没有配置id,name就是默认标识符
    如果配置id,又配置了name,那么name是别名
    name可以设置多个别名,可以用逗号,分号,空格隔开
    如果不配置id和name,可以根据applicationContext.getBean(.class)获取对象;
 
    class是bean的全限定名=包名+类名
-->
<bean id="hello" name="hello2 h2,h3;h4" class="com.kuang.pojo.Hello">
    <property name="name" value="Spring"/>
</bean>

5.3、import

团队的合作通过import来实现 .

<import resource="beans.xml"/>

6、依赖注入【DI】

6.1、概念

  • 依赖注入(Dependency Injection,DI)。
  • 依赖 : 指Bean对象的创建依赖于容器 . Bean对象的依赖资源 .
  • 注入 : 指Bean对象所依赖的资源 , 由容器来设置和装配 .

6.2、Set注入

【环境搭建】

1、复杂类型

public class Address {
    private String address;

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    @Override
    public String toString() {
        return "Address{" +
                "address='" + address + '\'' +
                '}';
    }
}

2、真实测试对象

import java.util.*;

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;


    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Address getAddress() {
        return address;
    }

    public void setAddress(Address address) {
        this.address = address;
    }

    public String[] getBooks() {
        return books;
    }

    public void setBooks(String[] books) {
        this.books = books;
    }

    public List<String> getHobbys() {
        return hobbys;
    }

    public void setHobbys(List<String> hobbys) {
        this.hobbys = hobbys;
    }

    public Map<String, String> getCard() {
        return card;
    }

    public void setCard(Map<String, String> card) {
        this.card = card;
    }

    public Set<String> getGames() {
        return games;
    }

    public void setGames(Set<String> games) {
        this.games = games;
    }

    public String getWife() {
        return wife;
    }

    public void setWife(String wife) {
        this.wife = wife;
    }

    public Properties getInfo() {
        return info;
    }

    public void setInfo(Properties info) {
        this.info = info;
    }


    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", address=" + address.toString() +
                ", books=" + Arrays.toString(books) +
                ", hobbys=" + hobbys +
                ", card=" + card +
                ", games=" + games +
                ", wife='" + wife + '\'' +
                ", info=" + info +
                '}';
    }
}

3.注入

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


    <bean id="address" class="com.li.pojo.Address">
        <property name="address" value="湖南"></property>
    </bean>

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

        <!-- 一:普通值注入,value  -->
        <property name="name" value="小李子"></property>
      

        <!--  二:Bean注入,ref      -->
        <property name="address" ref="address"></property>
      

        <!-- 三:数组       -->
        <property name="books">
            <array>
                <value>红楼梦</value>
                <value>西游记</value>
                <value>三国演义</value>
                <value>水浒传</value>
            </array>
        </property>
      

        <!-- 四:list   -->
        <property name="hobbys">
            <list>
                <value>听歌</value>
                <value>跳舞</value>
            </list>
        </property>
      

        <!-- 五:Map    -->
        <property name="card">
            <map>
                <entry key="身份证" value="1323123123"></entry>
                <entry key="银行卡" value="633535"></entry>
            </map>
        </property>
      

        <!-- 六:Set 注入   -->
        <property name="games">
            <set>
                <value>LOL</value>
                <value>CF</value>
            </set>
        </property>
      

        <!--七: null注入       -->
        <property name="wife">
           <null></null>
        </property>
      

        <!-- 八:properties注入       -->
        <property name="info">
            <props>
                <prop key="driver">20190203</prop>
                <prop key="url"></prop>
                <prop key="username">root</prop>
                <prop key="password">123456</prop>
            </props>
        </property>
    </bean>

</beans>

4.测试

public class Mytest {
    public static void main(String[] args) {
       ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        Student student = (Student) context.getBean("student");

        System.out.println(student.toString());
      //测试结果
        /*Student{
             name='小李子',
             address=Address{address='湖南'},
             books=[红楼梦, 西游记, 三国演义, 水浒传],
             hobbys=[听歌, 跳舞],
             card={身份证=1323123123, 银行卡=633535},
             games=[LOL, CF],
             wife='null',
             info={password=123456,url=男, driver=20190203, username=root}}
         */
    }

6.3、p命名和c命名注入

User.java :【注意:这里没有有参构造器!】

 public class User {
     private String name;
     private int age;
 
     public void setName(String name) {
         this.name = name;
     }
 
     public void setAge(int age) {
         this.age = age;
     }
 
     @Override
     public String toString() {
         return "User{" +
                 "name='" + name + '\'' +
                 ", age=" + age +
                 '}';
     }
 }

1、P命名空间注入 : 需要在头文件中加入约束文件

 导入约束 : xmlns:p="http://www.springframework.org/schema/p"
 
 <!--P(属性: properties)命名空间 , 属性依然要设置set方法-->
 <bean id="user" class="com.kuang.pojo.User" p:name="" p:age="18"/>

2、c 命名空间注入 : 需要在头文件中加入约束文件

 导入约束 : xmlns:c="http://www.springframework.org/schema/c"
 <!--C(构造: Constructor)命名空间 , 属性依然要设置set方法-->
 <bean id="user" class="com.kuang.pojo.User" c:name="小李" c:age="18"/>

发现问题:当没写有参构造时,c命名报红

解决:把有参构造器加上,这里也能知道,c 就是所谓的构造器注入!

public class user {
    private String name;
    private int age;

    public user() {
    }

    public user(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public void setName(String name) {
        this.name = name;
    }


    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public String toString() {
        return "user{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}

测试:

 @Test
 public void test02(){
     ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
     User user = (User) context.getBean("user");
     System.out.println(user);
 }

6.4、Bean作用域

在Spring中,那些组成应用程序的主体及由Spring IoC容器所管理的对象,被称之为bean。简单地讲,bean就是由IoC容器初始化、装配及管理的对象 .

在这里插入图片描述

Singleton:单例

当一个bean的作用域为Singleton,那么Spring IoC容器中只会存在一个共享的bean实例,并且所有对bean的请求,只要id与该bean定义相匹配,则只会返回bean的同一实例。Singleton是单例类型,就是在创建起容器时就同时自动创建了一个bean的对象,不管你是否使用,他都存在了,每次获取到的对象都是同一个对象。注意,Singleton作用域是Spring中的缺省作用域。要在XML中将bean定义成singleton,可以这样配置:

 <bean id="ServiceImpl" class="cn.csdn.service.ServiceImpl" scope="singleton">

测试

 @Test
 public void test(){
     ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
     User user = (User) context.getBean("user");
     User user2 = (User) context.getBean("user");
     System.out.println(user==user2);
 }

Prototype:原型类型

当一个bean的作用域为Prototype,表示一个bean定义对应多个对象实例。Prototype作用域的bean会导致在每次对该bean请求(将其注入到另一个bean中,或者以程序的方式调用容器的getBean()方法)时都会创建一个新的bean实例。Prototype是原型类型,它在我们创建容器的时候并没有实例化,而是当我们获取bean的时候才会去创建一个对象,而且我们每次获取到的对象都不是同一个对象。根据经验,对有状态的bean应该使用prototype作用域,而对无状态的bean则应该使用singleton作用域。在XML中将bean定义成prototype,可以这样配置:

 <bean id="account" class="com.foo.DefaultAccount" scope="prototype"/>  
  或者
 <bean id="account" class="com.foo.DefaultAccount" singleton="false"/> 

最常见的就是这两种!

7、Bean的自动装配

自动装配是Spring满足bean依赖的一种方式

spring会在上下文中自动寻找,并自动给bean装配属性

在spring中有三种装配方式

​ 1.在xml中显示配置

​ 2.在Java中显示配置

​ 3.隐式的自动装配bean【重点】

7.1、测试

环境搭配:一个人有两个宠物

public class Cat {
     public void shout(){
         System.out.println("喵");
     }
}
public class Dog {
    public void shout(){
        System.out.println("汪");
    }
}
package com.li.pojo;

public class People {
    private Cat cat;
    private Dog dog;
    private String name;



    public Cat getCat() {
        return cat;
    }

    public void setCat(Cat cat) {
        this.cat = cat;
    }

    public Dog getDog() {
        return dog;
    }

    public void setDog(Dog dog) {
        this.dog = dog;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return "People{" +
                "cat=" + cat +
                ", dog=" + dog +
                ", name='" + name + '\'' +
                '}';
    }
}


spring配置:
  
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
 
    <bean id="dog" class="com.li.pojo.Dog"/>
    <bean id="cat" class="com.li.pojo.Cat"/>
    <bean id="user" class="com.li.pojo.User">
        <property name="cat" ref="cat"/>
        <property name="dog" ref="dog"/>
        <property name="str" value="小李"/>
    </bean>
  

public void test1(){
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    People people = context.getBean("people", People.class);
    System.out.println(people);
    people.getCat().shout();
    people.getDog().shout();
}

7.2、ByName自动装配

<!--
    byname:会自动在容器上下文中查找,和自己对象set方法后面的值对应的bean id!
-->

<bean id="people" class="com.li.pojo.People" autowire="byName" >
    <property name="name" value="小李"></property>
</bean>

7.3、ByType自动装配

<bean id="cat" class="com.li.pojo.Cat" ></bean>
<bean id="dog" class="com.li.pojo.Dog"></bean>
<--byType:会自动在容器中上下文查找,和自己对象属性类型相同的bean,可以不用id-->
  <bean id="people" class="com.li.pojo.People" autowire="byType" >
        <property name="name" value="小李"></property>
    </bean>

小结:

​ byname的时候,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性set方法值一致

​ byType的时候,需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性类型一致

7.4、使用注解实现自动装配

jdk1.5开始支持注解,spring2.5开始全面支持注解。

使用注解须知:

1.导入约束 context约束。

2.配置注解的支持

context:annotation-config/【重点】

配置:

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

<!--    开启注解支持-->
    <context:annotation-config/>
  
  </beans>

@Autowired

  • @Autowired是按类型自动转配的,不支持id匹配。
  • 使用Autowired我们可以不用编写set方法,前提是你这个自动装配的属性在ioc(spring)容器中,且复合名字byname!

1、将User类中的set方法去掉,使用@Autowired注解

public class User {
    @Autowired
    private Cat cat;
    @Autowired
    private Dog dog;
    private String str;
 
    public Cat getCat() {
        return cat;
    }
    public Dog getDog() {
        return dog;
    }
    public String getStr() {
        return str;
    }
}

2、配置文件

    <context:annotation-config/>

    <bean id="cat" class="com.li.pojo.Cat" ></bean>
    <bean id="dog" class="com.li.pojo.Dog"></bean>
    <bean id="people" class="com.li.pojo.People"></bean>

@Qualifier

  • @Autowired是根据类型自动装配的,加上@Qualifier则可以根据byName的方式自动装配

  • @Qualifier不能单独使用。

    1、配置:

    <!--    <bean id="cat" class="com.li.pojo.Cat" ></bean>-->
        <bean id="cat2" class="com.li.pojo.Cat"></bean>
    <!--    <bean id="dog" class="com.li.pojo.Dog"></bean>-->
        <bean id="dog2" class="com.li.pojo.Dog"></bean>
        <bean id="people" class="com.li.pojo.People"></bean>
    

2、没有加Qualifier测试,直接报错

3、加入Qualifier注解

    @Autowired
    @Qualifier(value = "cat2")
    private Cat cat;
    @Autowired
    @Qualifier(value = "dog2")
    private Dog dog;

@Resource

  • @Resource如有指定的name属性,先按该属性进行byName方式查找装配;
  • 其次再进行默认的byName方式进行装配;
  • 如果以上都不成功,则按byType的方式自动装配。
  • 都不成功,则报异常。

配置:

<bean id="cat" class="com.li.pojo.Cat" ></bean>
<bean id="dog" class="com.li.pojo.Dog"></bean>
<bean id="dog2" class="com.li.pojo.Dog"></bean>
<bean id="people" class="com.li.pojo.People"></bean>

实体类:

@Resource
private Cat cat;
@Resource(name="dog2")
private Dog dog;
private String name;

测试:成功

配置2:

<bean id="cat" class="com.li.pojo.Cat" ></bean>
<bean id="dog" class="com.li.pojo.Dog"></bean>
<bean id="people" class="com.li.pojo.People"></bean>
删除dog2

实体类:

@Resource
private Cat cat;
@Resource
private Dog dog;

小结:

  • @Resource和@Autowired的区别:
  • 都是用来自动装配的,都可以放在属性字段上
  • @Autowired通过byType的方式实现,而且必须要求这个对象存在!
  • @Resource默认通过byName的方式实现,如果找不到名字,则通过byType实现!如果两个都找不到就报错
  • 执行顺序不同:@Autowired先byType,@Resource先byName。

8、使用注解开发

在spring4之后,想要使用注解形式,必须得要引入aop的包

需要导入content约束

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

<!--    开启注解支持-->
    <context:annotation-config/>
  
  </beans>

1.bean

2.属性如何注入

@Component
public class User {

    @Value("李")//相当于 <property name="name" value="李"></property>
    public String name;

    public void setName(String name) {
        this.name = name;
    }

3.衍生的注解

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

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

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

4.自动装配置

@Autowired :自动装配通过类型。名字如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value=""xxx"")
@Nullable字段标记了这个注解,说明这个字段可以为null;
@Resource :自动装配通过名字。类型.

5.作用域

// @Component等价于<bean id="user" class="com.li.pojo.User"></bean>
@Component

//@Scope("singleton")单例
@Scope("prototype")//原型
public class User {

    @Value("李")//相当于 <property name="name" value="李"></property>
    public String name;

    public void setName(String name) {
        this.name = name;
    }
}

6.小结

xml与注解:

  • xml 更加万能,适用于任何场合!维护简单方便。

  • 注解不是自己类使用不了,维护相对复杂!

xml与注解最佳实践:

  • xml用来管理bean;
  • 注解只负责完成属性的注入;
  • 我们在使用的过程中,只需要注意一个问题:必须让注解生效,就需要开启注解的支持
<!--    指定要扫描的包,这个包下的注解就会生效-->
    <context:component-scan base-package="com.li.pojo"></context:component-scan>
    <!--    开启注解支持-->
    <context:annotation-config/>

9、使用java的方式配置spring

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

JavaConfig是spring的一个子项目,在spring4之后,它就成为了一个核心功能!

实体类

package com.li.pojo;

import org.springframework.beans.factory.annotation.Value;

public class User {
    private String name;


    public String getName() {
        return name;
    }

    @Value("李")
    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return "User{" +
                "name='" + name + '\'' +
                '}';
    }
}

配置文件

package com.li.config;


import com.li.pojo.User;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

//这个也会被spring托管,注册到容器中,因为他本来就是一个@component
//@Configuration代表这是一个配置类,和beans.xml一样。

@Configuration
//@ComponentScan("com.li.pojo")扫描包
@Import(liconfig2.class)

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

测试类

import com.li.config.liconfig;
import com.li.pojo.User;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Mytest {
    public static void main(String[] args) {
        ApplicationContext context = new AnnotationConfigApplicationContext(liconfig.class);
        User getUser = context.getBean("getUser", User.class);
        System.out.println(getUser.getName());
    }
}

这种Java配置方式,在spring boot中随处可见!

10、代理模式

10.1、静态代理

角色分析:

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

代码步骤

1、接口

//租房
public interface Rent {
    public void rent();
}

2、真实角色

public class FangDong implements Rent {
    public void rent() {
        System.out.println("房东出租房子!");
    }
}

3、代理角色

public class Proxy {
    private FangDong fangDong;

    public Proxy(){}

    public Proxy(FangDong fangDong) {
        this.fangDong = fangDong;
    }

    public  void rent(){
        fangDong.rent();
        kanfang();
        hetong();
        fare();
    }

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

    public void hetong(){
        System.out.println("签合同");
    }
    //收中介费
    public void fare(){
        System.out.println("收中介费");
    }
}

4、客户端访问代理角色

public class ZuFangPeople {
    public static void main(String[] args) {
        FangDong fangDong=new FangDong();
        Proxy proxy=new Proxy(fangDong);
        proxy.rent();
    }
}

分析:在这个过程中,你直接接触的就是中介,就如同现实生活中的样子,你看不到房东,但是你依旧租到了房东的房子通过代理,这就是所谓的代理模式,程序源自于生活,所以学编程的人,一般能够更加抽象的看待生活中发生的事情。

代理模式的好处:

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

缺点:

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

10.2、动态代理

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

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

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

    ​ 1、基于接口:JDK动态代理

    ​ 2、基于类:cglib

    ​ 3、Java字节码实现:Javasist

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

【InvocationHandler:调用处理程序】(对照JDK帮助文档查看)

Object invoke(Object proxy, 方法 method, Object[] args);
//参数
//proxy - 调用该方法的代理实例
//method -所述方法对应于调用代理实例上的接口方法的实例。方法对象的声明类将是该方法声明的接口,它可以是代理类继承该方法的代理接口的超级接口。
//args -包含的方法调用传递代理实例的参数值的对象的阵列,或null如果接口方法没有参数。原始类型的参数包含在适当的原始包装器类的实例中,例如java.lang.Integer或java.lang.Boolean 。

【Proxy : 代理】

//生成代理类
public Object getProxy(){
   return Proxy.newProxyInstance(this.getClass().getClassLoader(),
                                 rent.getClass().getInterfaces(),this);
}

代码实现

1、抽象角色:接口

//租房
public interface Rent {
    public void rent();
}

2、真实角色

public class FangDong implements Rent {
    public void rent() {
        System.out.println("房东出租房子!");
    }
}

3、代理角色

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

public class ProxyInvocationHandler implements InvocationHandler {


    //被代理的接口
    private Rent rent;


    public void setRent(Rent rent) {
        this.rent = rent;
    }

//    Foo f = (Foo) Proxy.newProxyInstance(Foo.class.getClassLoader(),
//            new Class<?>[] { Foo.class },
//            handler);

    //生成得到代理类
    public Object getProxy(){
         return  Proxy.newProxyInstance(this.getClass().getClassLoader(),
                rent.getClass().getInterfaces(),this);
    }

    //处理代理实例,并返回结果
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
       //动态代理的本质,就是使用反射机制
        seehouse();
        Object result = method.invoke(rent, args);
        return result;
    }

    public void seehouse(){
        System.out.println("看房子");
    }
}

4、客户端访问代理角色

public class Client {
    public static void main(String[] args) {
        // 真实角色
        FangDong fangDong=new FangDong();
        //代理角色
        ProxyInvocationHandler pih=new ProxyInvocationHandler();
       //通过调用程序处理角色来处理我们要调用的接口对象
        pih.setRent(fangDong);
        Rent proxy = (Rent) pih.getProxy();//这里的proxy是动态生成的
        proxy.rent();
    }
}

加深理解

我们来使用动态代理实现代理我们后面写的UserService!

我们也可以编写一个通用的动态代理实现的类!所有的代理对象设置为Object即可!

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

public class ProxyInvocationHandler implements InvocationHandler {

    //被代理的接口
    private Object target;

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

    //生成得到代理类
    public Object getProxy(){
        return  Proxy.newProxyInstance(this.getClass().getClassLoader(),
                target.getClass().getInterfaces(),this);
    }

    //处理代理实例,并返回结果
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        log(method.getName());//反射
        //动态代理的本质,就是使用反射机制
        Object result = method.invoke(target, args);
        return result;
    }

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

}

测试:

public class Test {
    public static void main(String[] args) {
        //真实角色
        UserServiceImpl userService=new UserServiceImpl();
        //代理角色
        ProxyInvocationHandler pih=new ProxyInvocationHandler();

        pih.setTarget(userService);
        UserService proxy = (UserService) pih.getProxy();

        proxy.delete();
    }
}

动态代理的好处

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

11、AOP

11.1、什么是AOP

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

11.2、AOP在spring中的作用

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

以下名词需要了解下:

  • 横切关注点:跨越应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志 , 安全 , 缓存 , 事务等等 …

  • 切面(ASPECT):横切关注点 被模块化 的特殊对象。即,它是一个类。

  • 通知(Advice):切面必须要完成的工作。即,它是类中的一个方法。

  • 目标(Target):被通知对象。

  • 代理(Proxy):向目标对象应用通知之后创建的对象。

  • 切入点(PointCut):切面通知 执行的 “地点”的定义。

  • 连接点(JointPoint):与切入点匹配的执行点。

11.3、实现aop

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

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

1、第一种方式:通过Spring API实现

业务接口和实现类

public interface UserService {
    public void add();
    public void delete();
    public void update();
    public void select();
}
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 select() {
        System.out.println("查");
    }
}

然后去写我们的增强类 , 我们编写两个 , 一个前置增强 一个后置增强

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 {
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
        System.out.println("执行了" + method.getName() + "方法,返回结果" + returnValue);
    }
}

最后去spring的文件中注册 , 并实现aop切入实现 , 注意导入约束 .

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

<!--    注册bean-->
    <bean id="usersevice" class="com.li.service.UserServiceImpl"></bean>
    <bean id="log" class="com.li.Log.Log"></bean>
    <bean id="afterlog" class="com.li.Log.AfterLog"></bean>

<!--    方法一:使用原生Spring API接口-->
<!--    配置aop:需要导入aop的约束-->
    <aop:config>
<!--        切入点:expression:表达式,execution(需要执行的位置!)-->
        <aop:pointcut id="pointcut" expression="execution(* com.li.service.UserServiceImpl.*(..))"/>

<!--        执行环绕增加!-->
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"></aop:advisor>
        <aop:advisor advice-ref="afterlog" pointcut-ref="pointcut"></aop:advisor>
    </aop:config>
  </beans>

expression="execution(* com.li.service.UserServiceImpl.*(…))

解释:

符号含义
execution()表达式的主体
第一个“*”符号表示返回值的类型任意;
com.li.service.UserServiceImplAOP所切的服务的包名,即我们的业务类
.*(…)表示任何方法名,括号表示参数,两个点表示任何参数类型

测试

public class Mytest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext(
                "beans.xml");
        //动态代理代理的是接口
        UserService userservice = (UserService) context.getBean("usersevice");
        userservice.add();

    }
}

Aop的重要性 : 很重要 . 一定要理解其中的思路 , 主要是思想的理解这一块 .

Spring的Aop就是将公共的业务 (日志 , 安全等) 和领域业务结合起来 , 当执行领域业务时 , 将会把公共业务加进来 . 实现公共业务的重复利用 . 领域业务更纯粹 , 程序猿专注领域业务 , 其本质还是动态代理 .

2、第二种方式:自定义类来实现Aop

业务类不变依旧是userServiceImpl

1、写一个切入类

public class DiyPointcut {
 
    public void before(){
        System.out.println("---------方法执行前---------");
    }
    public void after(){
        System.out.println("---------方法执行后---------");
    }
    
}

2、beans.xml配置文件

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

3、测试

public class Mytest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext(
                "beans.xml");
        //动态代理代理的是接口
        UserService userservice = (UserService) context.getBean("usersevice");
        userservice.add();

    }
}

3、第三种方法:使用注解实现

1、编写一个注解实现的增强类

//使用注解方式实现aop
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect//标注这个类是一个切面
public class AnnocationPointCut {
    @Before("execution(* com.li.service.UserServiceImpl.*(..))")
    public void before(){
        System.out.println("=====方法执行前=====");
    }

    @After("execution(* com.li.service.UserServiceImpl.*(..))")
    public void after(){
        System.out.println("=====方法执行前=====");
    }

}

2、beans.xml

<!--    方法三-->
    <bean id="annotationpointcut" class="com.li.diy.AnnocationPointCut"></bean>
<!--    开启注解支持-->
    <aop:aspectj-autoproxy/>

aop:aspectj-autoproxy:说明

通过aop命名空间的<aop:aspectj-autoproxy />声明自动为spring容器中那些配置@aspectJ切面的bean创建代理,织入切面。当然,spring 在内部依旧采用AnnotationAwareAspectJAutoProxyCreator进行自动代理的创建工作,但具体实现的细节已经被<aop:aspectj-autoproxy />隐藏起来了
 
<aop:aspectj-autoproxy />有一个proxy-target-class属性,默认为false,表示使用jdk动态代理织入增强,当配为<aop:aspectj-autoproxy  poxy-target-class="true"/>时,表示使用CGLib动态代理技术织入增强。不过即使proxy-target-class设置为false,如果目标类没有声明接口,则spring将自动使用CGLib动态代理。

12、整合mybatis

1、导入相关jar包

junit

  <dependency>  
        <groupId>junit</groupId>   
        <artifactId>junit</artifactId>  
        <version>4.12</version>
    </dependency>

mybatis

 <dependency>  
        <groupId>org.mybatis</groupId>  
        <artifactId>mybatis</artifactId>  
        <version>3.5.2</version>
    </dependency>

mysql-connector-java

<dependency>   
    <groupId>mysql</groupId> 
    <artifactId>mysql-connector-java</artifactId> 
    <version>5.1.47</version>
</dependency

spring相关

<dependency> 
    <groupId>org.springframework</groupId>  
    <artifactId>spring-webmvc</artifactId>  
    <version>5.1.10.RELEASE</version></dependency>
<dependency>  
    <groupId>org.springframework</groupId> 
    <artifactId>spring-jdbc</artifactId>   
    <version>5.1.10.RELEASE</version>
</dependency>

aspectJ AOP 织入器

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

mybatis-spring整合包 【重点】

<dependency> 
    <groupId>org.mybatis</groupId>  
    <artifactId>mybatis-spring</artifactId>   
    <version>2.0.2</version>
</dependency>

配置Maven静态资源过滤问题!

    <build>  
        <resources>     
            <resource>         
                <directory>src/main/java</directory>     
                <includes>             
                    <include>**/*.properties</include>      
                    <include>**/*.xml</include>    
                </includes>         
                <filtering>true</filtering>    
            </resource>  
        </resources></build>

2、编写配置文件

3、代码实现

回忆MyBatis

编写pojo实体类

    package com.kuang.pojo;public class User {  
        private int id;  //id  
        private String name;   //姓名   
        private String pwd;   //密码
    }

实现mybatis的配置文件

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE configuration       PUBLIC "-//mybatis.org//DTD Config 3.0//EN"       "http://mybatis.org/dtd/mybatis-3-config.dtd">
    <configuration>   
        <typeAliases>       
            <package name="com.kuang.pojo"/>  
        </typeAliases>   
        <environments default="development">    
            <environment id="development">      
                <transactionManager type="JDBC"/>     
                <dataSource type="POOLED">          
                    <property name="driver" value="com.mysql.jdbc.Driver"/>   
                    <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&amp;useUnicode=true&amp;characterEncoding=utf8"/>          
                    <property name="username" value="root"/>           
                    <property name="password" value="123456"/>     
                </dataSource>     
            </environment>   
        </environments> 
        
        <mappers>      
            <package name="com.kuang.dao"/>  
        </mappers>
    </configuration>

UserDao接口编写

    public interface UserMapper { 
        public List<User> selectUser();
    }

接口对应的Mapper映射文件

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE mapper       PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"       "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
    <mapper namespace="com.kuang.dao.UserMapper">   
        <select id="selectUser" resultType="User">  
            select * from user   
        </select>
    </mapper>

测试类

    @Testpublic void selectUser() throws IOException {  
        String resource = "mybatis-config.xml"; 
        InputStream inputStream = Resources.getResourceAsStream(resource);  
        SqlSessionFactory sqlSessionFactory = new 
            SqlSessionFactoryBuilder().build(inputStream); 
        SqlSession sqlSession = sqlSessionFactory.openSession(); 
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);  
        List<User> userList = mapper.selectUser();   
        for (User user: userList){     
            System.out.println(user); 
        }  
        sqlSession.close();
    }

MyBatis-Spring学习

引入Spring之前需要了解mybatis-spring包中的一些重要类;

http://www.mybatis.org/spring/zh/index.html

什么是 MyBatis-Spring?

MyBatis-Spring 会帮助你将 MyBatis 代码无缝地整合到 Spring 中。

知识基础

在开始使用 MyBatis-Spring 之前,你需要先熟悉 Spring 和 MyBatis 这两个框架和有关它们的术语。这很重要

MyBatis-Spring 需要以下版本:

在这里插入图片描述

如果使用 Maven 作为构建工具,仅需要在 pom.xml 中加入以下代码即可:

    <dependency>  
        <groupId>org.mybatis</groupId>   
        <artifactId>mybatis-spring</artifactId>   
        <version>2.0.2</version>
    </dependency>

要和 Spring 一起使用 MyBatis,需要在 Spring 应用上下文中定义至少两样东西:一个 SqlSessionFactory 和至少一个数据映射器类。

在 MyBatis-Spring 中,可使用SqlSessionFactoryBean来创建 SqlSessionFactory。要配置这个工厂 bean,只需要把下面代码放在 Spring 的 XML 配置文件中:

    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
    </bean>

注意:SqlSessionFactory需要一个 DataSource(数据源)。这可以是任意的 DataSource,只需要和配置其它 Spring 数据库连接一样配置它就可以了。

在基础的 MyBatis 用法中,是通过 SqlSessionFactoryBuilder 来创建 SqlSessionFactory 的。而在 MyBatis-Spring 中,则使用 SqlSessionFactoryBean 来创建。

在 MyBatis 中,你可以使用 SqlSessionFactory 来创建 SqlSession。一旦你获得一个 session 之后,你可以使用它来执行映射了的语句,提交或回滚连接,最后,当不再需要它的时候,你可以关闭 session。

SqlSessionFactory有一个唯一的必要属性:用于 JDBC 的 DataSource。这可以是任意的 DataSource 对象,它的配置方法和其它 Spring 数据库连接是一样的。

一个常用的属性是 configLocation,它用来指定 MyBatis 的 XML 配置文件路径。它在需要修改 MyBatis 的基础配置非常有用。通常,基础配置指的是 < settings> 或 < typeAliases>元素。

需要注意的是,这个配置文件并不需要是一个完整的 MyBatis 配置。确切地说,任何环境配置(),数据源()和 MyBatis 的事务管理器()都会被忽略。SqlSessionFactoryBean 会创建它自有的 MyBatis 环境配置(Environment),并按要求设置自定义环境的值。

SqlSessionTemplate 是 MyBatis-Spring 的核心。作为 SqlSession 的一个实现,这意味着可以使用它无缝代替你代码中已经在使用的 SqlSession。

模板可以参与到 Spring 的事务管理中,并且由于其是线程安全的,可以供多个映射器类使用,你应该总是用 SqlSessionTemplate 来替换 MyBatis 默认的 DefaultSqlSession 实现。在同一应用程序中的不同类之间混杂使用可能会引起数据一致性的问题。

可以使用 SqlSessionFactory 作为构造方法的参数来创建 SqlSessionTemplate 对象。

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

现在,这个 bean 就可以直接注入到你的 DAO bean 中了。你需要在你的 bean 中添加一个 SqlSession 属性,就像下面这样:

    public class UserDaoImpl implements UserDao { 
        private SqlSession sqlSession; public void setSqlSession(SqlSession sqlSession) {   
            this.sqlSession = sqlSession;
        } 
        public User getUser(String userId) { 
            return sqlSession.getMapper...;
        }
    }

按下面这样,注入 SqlSessionTemplate:

    <bean id="userDao" class="org.mybatis.spring.sample.dao.UserDaoImpl">
        <property name="sqlSession" ref="sqlSession" />
    </bean>

整合实现一

1、引入Spring配置文件beans.xml

    <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"      xsi:schemaLocation="http://www.springframework.org/schema/beans       http://www.springframework.org/schema/beans/spring-beans.xsd">
2、配置数据源替换mybaits的数据源

    <!--配置数据源:数据源有非常多,可以使用第三方的,也可使使用Spring的-->
    <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&amp;useUnicode=true&amp;characterEncoding=utf8"/> 
        <property name="username" value="root"/>  
        <property name="password" value="123456"/>
    </bean>
3、配置SqlSessionFactory,关联MyBatis

    <!--配置SqlSessionFactory-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
        <property name="dataSource" ref="dataSource"/>   <!--关联Mybatis-->  
        <property name="configLocation" value="classpath:mybatis-config.xml"/>
        <property name="mapperLocations" value="classpath:com/kuang/dao/*.xml"/>
    </bean>
4、注册sqlSessionTemplate,关联sqlSessionFactory;

    <!--注册sqlSessionTemplate , 关联sqlSessionFactory-->
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">   <!--利用构造器注入-->   <constructor-arg index="0" ref="sqlSessionFactory"/>
    </bean>
5、增加Dao接口的实现类;私有化sqlSessionTemplate

    public class UserDaoImpl implements UserMapper {   
        //sqlSession不用我们自己创建了,Spring来管理   
        private SqlSessionTemplate sqlSession;  
        public void setSqlSession(SqlSessionTemplate sqlSession) {   
            this.sqlSession = sqlSession;  
        }  
        public List<User> selectUser() {     
            UserMapper mapper = sqlSession.getMapper(UserMapper.class);   
            return mapper.selectUser(); 
        }  
    }
6、注册bean实现

    <bean id="userDao" class="com.kuang.dao.UserDaoImpl"> 
        <property name="sqlSession" ref="sqlSession"/>
    </bean>
7、测试

       @Test   
    public void test2(){      
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        UserMapper mapper = (UserMapper) context.getBean("userDao");      
        List<User> user = mapper.selectUser();     
        System.out.println(user); 
    }

结果成功输出!现在我们的Mybatis配置文件的状态!发现都可以被Spring整合!

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE configuration      PUBLIC "-//mybatis.org//DTD Config 3.0//EN"       "http://mybatis.org/dtd/mybatis-3-config.dtd">
    <configuration>   
        <typeAliases>      
            <package name="com.kuang.pojo"/>  
        </typeAliases>
    </configuration>

整合实现二

mybatis-spring1.2.3版以上的才有这个 .

官方文档截图 :

dao继承Support类 , 直接利用 getSqlSession() 获得 , 然后直接注入SqlSessionFactory . 比起方式1 , 不需要管理SqlSessionTemplate , 而且对事务的支持更加友好 . 可跟踪源码查看

在这里插入图片描述

在这里插入图片描述

测试:

1、将我们上面写的UserDaoImpl修改一下

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

2、修改bean的配置

<bean id="userDao" class="com.kuang.dao.UserDaoImpl">  
    <property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>

3、测试

@Testpublic void test2(){  
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");   
    UserMapper mapper = (UserMapper) context.getBean("userDao");  
    List<User> user = mapper.selectUser();  
    System.out.println(user);
}

总结 : 整合到spring以后可以完全不要mybatis的配置文件,除了这些方式可以实现整合之外,我们还可以使用注解来实现,这个等我们后面学习SpringBoot的时候还会测试整合!

13、声明式事务

回顾事务

  • 事务在项目开发过程非常重要,涉及到数据的一致性的问题,不容马虎!
  • 事务管理是企业级应用程序开发中必备技术,用来确保数据的完整性和一致性。

事务就是把一系列的动作当成一个独立的工作单元,这些动作要么全部完成,要么全部不起作用。

事务四个属性ACID

  1. 原子性(atomicity)

    • 事务是原子性操作,由一系列动作组成,事务的原子性确保动作要么全部完成,要么完全不起作用
  2. 一致性(consistency)

    • 一旦所有事务动作完成,事务就要被提交。数据和资源处于一种满足业务规则的一致性状态中
  3. 隔离性(isolation)

    • 可能多个事务会同时处理相同的数据,因此每个事务都应该与其他事务隔离开来,防止数据损坏
  4. 持久性(durability)

    • 事务一旦完成,无论系统发生什么错误,结果都不会受到影响。通常情况下,事务的结果被写到持久化存储器中

测试

将上面的代码拷贝到一个新项目中

在之前的案例中,我们给userDao接口新增两个方法,删除和增加用户;

    //添加一个用户
    int addUser(User user);
    //根据id删除用户
    int deleteUser(int id);

mapper文件,我们故意把 deletes 写错,测试!

    <insert id="addUser" parameterType="com.kuang.pojo.User">
        insert into user (id,name,pwd) values (#{id},#{name},#{pwd})
    </insert>
    <delete id="deleteUser" parameterType="int">
        deletes from user where id = #{id}
    </delete>

编写接口的实现类,在实现类中,我们去操作一波

    public class UserDaoImpl extends SqlSessionDaoSupport implements UserMapper {  
        //增加一些操作   
        public List<User> selectUser() {     
            User user = new User(4,"小明","123456");       
            UserMapper mapper = 
                getSqlSession().getMapper(UserMapper.class); 
            mapper.addUser(user);    
            mapper.deleteUser(4);   
            return mapper.selectUser(); 
        }   
        //新增 
        public int addUser(User user) {    
            UserMapper mapper = 
                getSqlSession().getMapper(UserMapper.class);   
            return mapper.addUser(user); 
        }   
        //删除  
        public int deleteUser(int id) { 
            UserMapper mapper = 
                getSqlSession().getMapper(UserMapper.class);   
            return mapper.deleteUser(id);
        }
    }

测试

    @Testpublic void test2(){  
        ApplicationContext context = new 
            ClassPathXmlApplicationContext("beans.xml");   
        UserMapper mapper = (UserMapper) 
            context.getBean("userDao"); 
        List<User> user = mapper.selectUser();   
        System.out.println(user);
    }
报错:sql异常,delete写错了

结果 :插入成功!

没有进行事务的管理;我们想让他们都成功才成功,有一个失败,就都失败,我们就应该需要事务!

以前我们都需要自己手动管理事务,十分麻烦!

但是Spring给我们提供了事务管理,我们只需要配置即可;

Spring中的事务管理

Spring在不同的事务管理API之上定义了一个抽象层,使得开发人员不必了解底层的事务管理API就可以使用Spring的事务管理机制。Spring支持编程式事务管理和声明式的事务管理。

编程式事务管理

  • 将事务管理代码嵌到业务方法中来控制事务的提交和回滚
  • 缺点:必须在每个事务操作业务逻辑中包含额外的事务管理代码

声明式事务管理

  • 一般情况下比编程式事务好用。
  • 将事务管理代码从业务方法中分离出来,以声明的方式来实现事务管理。
  • 将事务管理作为横切关注点,通过aop方法模块化。Spring中通过Spring AOP框架支持声明式事务管理。

使用Spring管理事务,注意头文件的约束导入 : tx

    xmlns:tx="http://www.springframework.org/schema/tx"
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx.xsd">

事务管理器

  • 无论使用Spring的哪种事务管理策略(编程式或者声明式)事务管理器都是必须的。
  • 就是 Spring的核心事务管理抽象,管理封装了一组独立于技术的方法。

JDBC事务

    <bean id="transactionManager" 
     class="org.springframework.jdbc.datasource.DataSourceTransactionManager">     
        <property 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="search*" propagation="REQUIRED"/>         <tx:method name="get" read-only="true"/>       
            <tx:method name="*" propagation="REQUIRED"/>   
        </tx:attributes>
    </tx:advice>

spring事务传播特性:

事务传播行为就是多个事务方法相互调用时,事务如何在这些方法间传播。spring支持7种事务传播行为:

  • propagation_requierd:如果当前没有事务,就新建一个事务,如果已存在一个事务中,加入到这个事务中,这是最常见的选择。
  • propagation_supports:支持当前事务,如果没有当前事务,就以非事务方法执行。
  • propagation_mandatory:使用当前事务,如果没有当前事务,就抛出异常。
  • propagation_required_new:新建事务,如果当前存在事务,把当前事务挂起。
  • propagation_not_supported:以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
  • propagation_never:以非事务方式执行操作,如果当前事务存在则抛出异常。
  • propagation_nested:如果当前存在事务,则在嵌套事务内执行。如果当前没有事务,则执行与propagation_required类似的操作

Spring 默认的事务传播行为是 PROPAGATION_REQUIRED,它适合于绝大多数的情况。

假设 ServiveX#methodX() 都工作在事务环境下(即都被 Spring 事务增强了),假设程序中存在如下的调用链:Service1#method1()->Service2#method2()->Service3#method3(),那么这 3 个服务类的 3 个方法通过 Spring 的事务传播机制都工作在同一个事务中。

就好比,我们刚才的几个方法存在调用,所以会被放在一组事务当中!

配置AOP

导入aop的头文件!

    <!--配置aop织入事务-->
    <aop:config>  
        <aop:pointcut id="txPointcut" expression="execution(* com.kuang.dao.*.*(..))"/>  
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
    </aop:config>

进行测试

删掉刚才插入的数据,再次测试!

    @Testpublic void test2(){ 
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");   
        UserMapper mapper = (UserMapper)context.getBean("userDao");  
        List<User> user = mapper.selectUser();   
        System.out.println(user);
    }

思考问题?

为什么需要配置事务?

  • 如果不配置,就需要我们手动提交控制事务;
  • 事务在项目开发过程非常重要,涉及到数据的一致性的问题,不容马虎!
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值