主頁 > 軟體設計 > (七) Spring學習總結

(七) Spring學習總結

2021-06-16 07:38:30 軟體設計

Spring 框架概述

  • pring 使創建 Java 企業應用程式變得容易,它提供了在企業環境中使用 Java 語言所需的一切,并支持 Groovy 和 Kotlin 作為 JVM 上的替代語言,并且可以根據應用程式的需求靈活地創建多種體系結構,從 Spring Framework 5.0 開始,Spring 需要 JDK 8(Java SE 8),并且已經為 JDK 9 提供了現成的支持,
  • Spring 是分層的 Java SE/EE full-stack 輕量級開源框架,以 IoC(Inverse of Control,控制反轉)和 AOP(Aspect Oriented Programming,面向切面編程)為內核,使用基本的 JavaBean 完成以前只可能由 EJB 完成的作業,取代了 EJB 臃腫和低效的開發模式,
  • pring 是開源的,它擁有一個龐大而活躍的社區,可以根據各種實際用例提供持續的反饋,這幫助 Spring 在很長一段時間內成功地 Developing 了,

Spring優點

  • 方便解耦,簡化開發
    Spring 就是一個大工廠,可以將所有物件的創建和依賴關系的維護交給 Spring 管理,
  • 方便集成各大優秀框架
    Spring 不排斥各種優秀的開源框架,其內部提供了對各種優秀框架(如 Struts2、Hibernate、MyBatis 等)的直接支持,
  • 方便程式的測驗
    Spring 支持 JUnit4,可以通過注解方便地測驗 Spring 程式,
  • AOP 編程的支持
    Spring 提供面向切面編程,可以方便地實作對程式進行權限攔截和運行監控等功能,
  • 宣告式事務的支持
    只需要通過配置就可以完成對事務的管理,而無須手動編程,

Spring體系結構

Spring 框架采用分層架構,根據不同的功能被劃分成了多個模塊,這些模塊大體可分為 Data Access/Integration、Web、AOP、Aspects、Messaging、Instrumentation、Core Container 和 Test,具體如下圖所示:

在這里插入圖片描述

  1. Data Access/Integration(資料訪問/集成)

資料訪問/集成層包括 JDBC、ORM、OXM、JMS 和 Transactions 模塊,具體介紹如下,

JDBC 模塊:提供了一個 JDBC 的抽象層,大幅度減少了在開發程序中對資料庫操作的編碼,
ORM 模塊:對流行的物件關系映射 API,包括 JPA、JDO、Hibernate 和 iBatis 提供了的集成層,
OXM 模塊:提供了一個支持物件/XML 映射的抽象層實作,如 JAXB、Castor、XMLBeans、JiBX 和 XStream,
JMS 模塊:指 Java 訊息服務,包含的功能為生產和消費的資訊,
Transactions 事務模塊:支持編程和宣告式事務管理實作特殊介面類,并為所有的 POJO,
  1. Web 模塊

Spring 的 Web 層包括 Web、Servlet、Struts 和 Portlet 組件,具體介紹如下,

Web 模塊:提供了基本的 Web 開發集成特性,例如多檔案上傳功能、使用的 Servlet 監聽器的 IoC 容器初始化以及 Web 應用背景關系,
Servlet模塊:包括 Spring 模型—視圖—控制器(MVC)實作 Web 應用程式,
Struts 模塊:包含支持類內的 Spring 應用程式,集成了經典的 Struts Web 層,
Portlet 模塊:提供了在 Portlet 環境中使用 MV C實作,類似 Web-Servlet 模塊的功能,
  1. Core Container(核心容器)

Spring 的核心容器是其他模塊建立的基礎,由 Beans 模塊、Core 核心模塊、Context 背景關系模塊和 Expression Language 運算式語言模塊組成,具體介紹如下,

Beans 模塊:提供了 BeanFactory,是工廠模式的經典實作,Spring 將管理物件稱為 Bean,
Core 核心模塊:提供了 Spring 框架的基本組成部分,包括 IoC 和 DI 功能,
Context 背景關系模塊:建立在核心和 Beans 模塊的基礎之上,它是訪問定義和配置任何物件的媒介,ApplicationContext 介面是背景關系模塊的焦點,
Expression Language 模塊:是運行時查詢和操作物件圖的強大的運算式語言,
  1. 其他模塊

Spring的其他模塊還有 AOP、Aspects、Instrumentation 以及 Test 模塊,具體介紹如下,

AOP 模塊:提供了面向切面編程實作,允許定義方法攔截器和切入點,將代碼按照功能進行分離,以降低耦合性,
Aspects 模塊:提供與 AspectJ 的集成,是一個功能強大且成熟的面向切面編程(AOP)框架,
Instrumentation 模塊:提供了類工具的支持和類加載器的實作,可以在特定的應用服務器中使用,
Test 模塊:支持 Spring 組件,使用 JUnit 或 TestNG 框架的測驗,

Spring拓展

Spring Boot與Spring Cloud

  • Spring Boot 是 Spring 的一套快速配置腳手架,可以基于Spring Boot 快速開發單個微服務,
  • Spring Cloud是基于Spring Boot實作的,
  • Spring Boot專注于快速、方便集成的單個微服務個體,Spring Cloud關注全域的服務治理框架,
  • Spring Boot使用了約束優于配置的理念,很多集成方案已經幫你選擇好了,能不配置就不配置 , Spring Cloud很大的一部分是基于Spring Boot來實作,Spring Boot可以離開Spring Cloud獨立使用開發專案,但是Spring Cloud離不開Spring Boot,屬于依賴的關系,
  • SpringBoot在SpringClound中起到了承上啟下的作用,如果你要學習SpringCloud必須要學習SpringBoot,

Spring IoC 容器 (IoC 也稱為依賴項注入(DI),或DI是實作IoC的一種方法)

IoC容器概述

  • 控制反轉是一種通過描述(XML或注解)并通過第三方去生產或獲取特定物件的方式,在Spring中實作控制反轉的是IoC容器,其實作方法是依賴注入,
  • Spring容器在初始化時先讀取組態檔,根據組態檔或元資料創建與組織物件存入容器中,程式使用時再從Ioc容器中取出需要的物件,在這里插入圖片描述
  • Spring 提供了兩種 IoC 容器,分別為 BeanFactory 和 ApplicationContext,
  1. BeanFactory
    beanFactory是一個Factory,用于管理bean的,有了一個Spring的beanFactory,我們就可以從spring中獲取注冊到其中的bean來使用,

  2. ApplicationContext
    ApplicationContext 是 BeanFactory 的子介面,也被稱為應用背景關系,該介面的全路徑為:org.springframework.context.ApplicationContext,它不僅提供了 BeanFactory 的所有功能,還添加了對 i18n(國際化)、資源訪問、事件傳播等方面的良好支持,
    ApplicationContext 介面有兩個常用的實作類:ClassPathXmlApplicationContext和FileSystemXmlApplicationContext,
    ClassPathXmlApplicationContext從類路徑 ClassPath 中尋找指定的 XML 組態檔,找到并裝載完成 ApplicationContext 的實體化作業,具體如下所示,ApplicationContext applicationContext = new ClassPathXmlApplicationContext(String configLocation);configLocation 引數用于指定 Spring 組態檔的名稱和位置,如 applicationContext.xml,FileSystemXmlApplicationContext從指定的檔案系統路徑中尋找指定的 XML 組態檔,找到并裝載完成 ApplicationContext 的實體化作業,具體如下所示,ApplicationContext applicationContext = new FileSystemXmlApplicationContext(String configLocation);它與 ClassPathXmlApplicationContext 的區別是:在讀取 Spring 的組態檔時,FileSystemXmlApplicationContext 不再從類路徑中讀取組態檔,而是通過引數指定組態檔的位置,它可以獲取類路徑之外的資源,如“D:/workspaces/applicationContext.xml”,

  3. BeanFactory 和 ApplicationContext區別:
    BeanFactory在初始化容器時,并未實體化Bean,直到第一次訪問某個Bean 時才實體目標Bean;而ApplicationContext 則在初始化應用背景關系時就實體化所有單實體的Bean ,
    在實際開發中,通常都選擇使用 ApplicationContext,而只有在系統資源較少時,才考慮使用 BeanFactory,
    (但是,它們都是通過 XML 組態檔加載 Bean 的,)

Spring入門程式

  1. 創建maven專案
  2. 在pom.xml匯入jar包依賴
    <dependencies>
        <!--匯入spring,maven依賴-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.2.12.RELEASE</version>
        </dependency>
        <!--匯入junit-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency>
    </dependencies>
  1. 撰寫介面
package com.xxx.mapper;

/**
 * @author shkstart
 * @create 2021-06-11 15:50
 */
public interface UserMapper {
    public void hello();
}

  1. 撰寫介面實作類
package com.xxx.mapper;/**
 * @author shkstart
 * @create 2021-06-11 15:50
 */

/**
 *@program: springTest
 *@description:
 *@author: XieXianXin
 *@create: 2021-06-11 15:50
 */
public class UserMapperImpl implements UserMapper{
    @Override
    public void hello() {
        System.out.println("Spring入門程式!");
    }
}
  1. 撰寫Spring核心組態檔applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--
    使用Spring來創建物件,在Spring這些都稱為Bean
    型別 變數名 = new 型別();
    Hello hello = new Hello();

    id = 變數名
    class = new 的物件
    -->

    <beans>
        <bean id="hello" class="com.xxx.mapper.UserMapperImpl">
        </bean>
    </beans>

</beans>
  1. 測驗
package com.xxx.mapper;/**
 * @author shkstart
 * @create 2021-06-11 15:57
 */

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

/**
 *@program: springTest
 *@description:
 *@author: XieXianXin
 *@create: 2021-06-11 15:57
 */
public class helloTest {
    @Test
    public void helloTest1(){
        // 1. 初始化Spring容器,加載組態檔
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        // 2. 通過容器獲取userMapper實體
        UserMapper hello = context.getBean("hello", UserMapper.class);
        // 3.呼叫實體中的hello()方法
        hello.hello();


    }
}

  • 測驗結果
    在這里插入圖片描述

IoC創建物件的三種方式

  • 通過無參構造(要提供set方法)

撰寫物體類User:

public class User {
    private String name;

    // set方法
    public void setName(String name) {
        this.name=name;
    }
    public User() {
        System.out.println("無參構造方法執行了!");
    }
    public void print(){
        System.out.println("學生名字為:"+name);
    }

}

撰寫Spring核心組態檔:

<!--無參構造,但是要有set方法-->
        <bean id="user" class="com.xxx.pojo.User">
            <property name="name" value="小新"/>
        </bean>

測驗以及結果:

 @Test
    public void helloTest2(){
        // 1. 初始化Spring容器,加載組態檔
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        // 2. 通過容器獲取userMapper實體
        User user = context.getBean("user", User.class);
        // 3.呼叫實體中的print()方法
        user.print();

    }

在這里插入圖片描述

  • 通過有參構造(要提供get方法)

撰寫物體類User:

public class User {
    private String name;

    //get方法
    public String getName() {
        return name;
    }

    public User(String name) {
        System.out.println("有參構造方法執行了!");
        this.name = name;
    }

    public void print(){
        System.out.println("學生名字為:"+name);
    }
}

撰寫Spring核心組態檔:

 <!--有參構造,但是要有get方法-->
        <bean id="user" class="com.xxx.pojo.User">
            <constructor-arg value="小新2" index="0"/>
        </bean>

測驗以及結果:

  @Test
    public void helloTest2(){
        // 1. 初始化Spring容器,加載組態檔
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        // 2. 通過容器獲取userMapper實體
        User user = context.getBean("user", User.class);
        // 3.呼叫實體中的print()方法
        user.print();

    }

在這里插入圖片描述拓展:Spring核心組態檔有三種寫法:

<!--有參構造,但是要有get方法-->
        <bean id="user" class="com.xxx.pojo.User">
            <constructor-arg index="0" value="小新-index屬性(0開始,按順序)"/>
            <constructor-arg name="name" value="小新-name屬性"/>
            <constructor-arg type="java.lang.String" value="小新-引數型別"/>
        </bean>

結果展示:
在這里插入圖片描述在這里插入圖片描述在這里插入圖片描述

  • 通過工廠類

撰寫工廠類:

public class Factory {
    //方法一,靜態方法
    public static User getStaticInstance(){
        return new User("小新2——靜態方法創建物件");
    }

    //方法二,實體方法
    public User getInstance(){
        return new User("小新3-實體方法創建物件");
    }
}

撰寫Spring核心組態檔:

<!--工廠類創建物件-->
        <!--創建工廠-->
        <bean id="factory" class="com.xxx.mapper.Factory"/>
        <!--靜態方法物件-->
        <bean id="staticFactory-user" class="com.xxx.mapper.Factory" factory-method="getStaticInstance"/>
        <!--實體方法物件-->
        <bean id="factory-user" factory-bean="factory" factory-method="getInstance"/>

測驗以及結果:
靜態方法:

 @Test
    public void helloTest4(){
        // 1. 初始化Spring容器,加載組態檔
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        // 2. 通過容器獲取userMapper實體
        User user = context.getBean("staticFactory-user", User.class);
        // 3.呼叫實體中的print()方法
        user.print();

    }

在這里插入圖片描述實體方法:

@Test
    public void helloTest3(){
        // 1. 初始化Spring容器,加載組態檔
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        // 2. 通過容器獲取userMapper實體
        User user = context.getBean("factory-user", User.class);
        // 3.呼叫實體中的print()方法
        user.print();

    }

在這里插入圖片描述

Spring依賴注入(DI)和Bean的作用域

什么是依賴注入:Spring 容器在創建被呼叫者的實體時,會自動將呼叫者需要的物件實體注入給呼叫者,這樣,呼叫者通過 Spring 容器獲得被呼叫者實體,

依賴注入主要有兩種實作方式,分別是屬性 setter 注入和構造方法注入,其中setter注入要求重點掌握,

  • 屬性 setter 注入(重點展開講解)
    指 IoC 容器使用 setter 方法注入被依賴的實體,通過呼叫無參構造器或無參 static 工廠方法實體化 bean 后,呼叫該 bean 的 setter 方法,即可實作基于 setter 的 DI,
  • 構造方法注入
    指 IoC 容器使用構造方法注入被依賴的實體,基于構造器的 DI 通過呼叫帶引數的構造方法實作,每個引數代表一個依賴,

屬性 setter 注入講解:
環境搭建:(創建一個Student和Book類):

Student

package com.xxx.pojo;/**
 * @author shkstart
 * @create 2021-06-11 17:45
 */
import java.util.*;

/**
 *@program: Spring_study
 *@description:
 *@author: XieXianXin
 *@create: 2021-06-11 17:45
 */
public class Student {
    private String name;
    private Book book;
    private String[] course;
    private List<String> hobbies;
    private Map<String,String> card;
    private Set<String> fruit;
    private String marriage;
    private Properties info;

    public Student() {
    }

    public Student(String name, Book book, String[] course, List<String> hobbies, Map<String, String> card, Set<String> fruit, String marriage, Properties info) {
        this.name = name;
        this.book = book;
        this.course = course;
        this.hobbies = hobbies;
        this.card = card;
        this.fruit = fruit;
        this.marriage = marriage;
        this.info = info;
    }

    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", book=" + book +
                ", course=" + Arrays.toString(course) +
                ", hobbies=" + hobbies +
                ", card=" + card +
                ", fruit=" + fruit +
                ", marriage='" + marriage + '\'' +
                ", info=" + info +
                '}';
    }

    public String getName() {
        return name;
    }

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

    public Book getBook() {
        return book;
    }

    public void setBook(Book book) {
        this.book = book;
    }

    public String[] getCourse() {
        return course;
    }

    public void setCourse(String[] course) {
        this.course = course;
    }

    public List<String> getHobbies() {
        return hobbies;
    }

    public void setHobbies(List<String> hobbies) {
        this.hobbies = hobbies;
    }

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

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

    public Set<String> getFruit() {
        return fruit;
    }

    public void setFruit(Set<String> fruit) {
        this.fruit = fruit;
    }

    public String getMarriage() {
        return marriage;
    }

    public void setMarriage(String marriage) {
        this.marriage = marriage;
    }

    public Properties getInfo() {
        return info;
    }

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

Book

package com.xxx.pojo;/**
 * @author shkstart
 * @create 2021-06-11 17:45
 */

/**
 *@program: Spring_study
 *@description:
 *@author: XieXianXin
 *@create: 2021-06-11 17:45
 */
public class Book {
    private String name;
    private int id;

    public Book() {
    }

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

    public String getName() {
        return name;
    }

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

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public Book(String name, int id) {
        this.name = name;
        this.id = id;
    }
}

  1. 常量注入:
<bean class="com.xxx.pojo.Student" id="student">
            <!--常量注入-->
            <property name="name" value="小新"/>
</bean>
  1. Bean注入:
<bean class="com.xxx.pojo.Book" id="book">
           <property name="name" value="Java放棄"/>
           <property name="id" value="100"/>
       </bean>
       <bean class="com.xxx.pojo.Student" id="student">
       	 <!--Bean注入-->
          <property name="book" ref="book"/>
   	 </bean>
  1. 陣列注入:
<property name="course">
              <array>
                  <value>高數</value>
                  <value>計算機網路</value>
                  <value>資料庫</value>
              </array>
           </property>
  1. List注入:
<property name="hobbies">
               <list>
                   <value></value>
                   <value></value>
                   <value>Rap</value>
               </list>
           </property>
  1. Map注入:
<property name="card">
               <map>
                   <entry key="銀行卡:" value="2501314"/>
                   <entry key="身份證:" value="1314520"/>
               </map>
           </property>
  1. Set注入:
 <property name="fruit">
               <set>
                   <value>香蕉</value>
                   <value>蘋果</value>
                   <value>雪梨</value>
               </set>
           </property>
  1. Null注入:
<property name="marriage">
               <null/>
           </property>
  1. Properties注入:
<property name="info">
               <props>
                   <prop key="username">小新</prop>
                   <prop key="password">520</prop>
               </props>
           </property>
  1. 測驗及結果展示:
public class BeanTest {
    @Test
    public void beanTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        Student student = context.getBean("student", Student.class);
        System.out.println(student);
    }
}

在這里插入圖片描述

Student{name=‘小新’, book=Book{name=‘Java放棄’, id=100}, course=[高數, 計算機網路, 資料庫], hobbies=[唱, 跳, Rap], card={銀行卡:=2501314, 身份證:=1314520}, fruit=[香蕉, 蘋果, 雪梨], marriage=‘null’, info={password=520, username=小新}}

Process finished with exit code 0

  1. p命名空間(以Book類舉例)
    匯入約束
    xmlns:p=“http://www.springframework.org/schema/p”
<bean id="pBook" class="com.xxx.pojo.Book" p:name="Java懵懂" p:id="250"/>

測驗及結果:

 @Test
    public void cpTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        Book pBook = context.getBean("pBook", Book.class);
        System.out.println(pBook);
    }

在這里插入圖片描述

  1. c命名空間
    匯入約束
    xmlns:c=“http://www.springframework.org/schema/c”
<bean id="cBook" class="com.xxx.pojo.Book" c:id="520" c:name="Java入坑"/>

測驗及結果:

  @Test
    public void cpTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        Book cBook = context.getBean("cBook", Book.class);
        System.out.println(cBook);
    }

在這里插入圖片描述作用域種類

  • singleton(以Book舉例)
    單例模式,使用 singleton 定義的 Bean 在 Spring 容器中只有一個實體,這也是 Bean 默認的作用域,
<bean class="com.xxx.pojo.Book" id="scopeBook" scope="singleton">
            <property name="id" value="1"/>
        </bean>
@Test
    public void scopeTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        Book book1 = context.getBean("scopeBook", Book.class);
        Book book2 = context.getBean("scopeBook", Book.class);
        System.out.println(book1.hashCode());
        System.out.println(book2.hashCode());
        System.out.println(book1==book2);
    }
}

在這里插入圖片描述

  • prototype
    原型模式,每次通過 Spring 容器獲取 prototype 定義的 Bean 時,容器都將創建一個新的 Bean 實體,即每次呼叫getBean()時,相當于執行了一次new XxxBean(),
<bean class="com.xxx.pojo.Book" id="scopeBook" scope="prototype">
            <property name="id" value="1"/>
        </bean>
@Test
    public void scopeTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        Book book1 = context.getBean("scopeBook", Book.class);
        Book book2 = context.getBean("scopeBook", Book.class);
        System.out.println(book1.hashCode());
        System.out.println(book2.hashCode());
        System.out.println(book1==book2);
    }
}

在這里插入圖片描述

  • request
    在一次 HTTP 請求中,容器會回傳該 Bean 的同一個實體,而對不同的 HTTP 請求,會回傳不同的實體,該作用域僅在當前 HTTP Request 內有效,
  • session
    在同一個 HTTP Session 中,容器會回傳該 Bean 的同一個實體,而對不同的 HTTP 請求,會回傳不同的實體,該作用域僅在當前 HTTP Session 內有效,
  • global Session
    在一個全域的 HTTP Session 中,容器會回傳該 Bean 的同一個實體,該作用域僅在使用 portlet context 時有效,

Spring 常用配置及屬性

在這里插入圖片描述

Spring自動裝配

  • Bean 的裝配可以理解為依賴關系注入,Bean 的裝配方式也就是 Bean 的依賴注入方式,Spring 容器支持多種形式的 Bean的裝配方式,如基于 XML 的 Bean 裝配、基于Annotation 的 Bean 裝配和自動裝配等,之前的舉例是通過XML的Bean裝配的,接下來講解自動裝配,
  • 自動裝配就是指 Spring 容器可以自動裝配(autowire)相互協作的 Bean 之間的關聯關系,將一個 Bean 注入其他 Bean 的 Property 中,
  • Spring的自動裝配需要從兩個角度來實作:
    1.組件掃描(component scanning):spring會自動發現應用背景關系中所創建的bean;
    2.自動裝配(autowiring):spring自動滿足bean之間的依賴,也就是我們說的IoC/DI;

autowire 的屬性和作用
在這里插入圖片描述

  • 環境搭建:(分別創建一個Student和Student2類,再創建一個Teacher類)
public class Student {
   public void study(){
       System.out.println("Student類的方法study執行了");
   }
}

public class Student2 {
    public void study(){
        System.out.println("Student2類的方法study執行了");
    }
}

public class Teacher {
    private Student student;
    private Student2 student2;
    private String teach;
    public Teacher() {
    }

    @Override
    public String toString() {
        return "Teacher{" +
                "student=" + student +
                ", student2=" + student2 +
                ", teach='" + teach + '\'' +
                '}';
    }

    public Student getStudent() {
        return student;
    }

    public void setStudent(Student student) {
        this.student = student;
    }

    public Student2 getStudent2() {
        return student2;
    }

    public void setStudent2(Student2 student2) {
        this.student2 = student2;
    }

    public String getTeach() {
        return teach;
    }

    public void setTeach(String teach) {
        this.teach = teach;
    }

    public Teacher(Student student, Student2 student2, String teach) {
        this.student = student;
        this.student2 = student2;
        this.teach = teach;
    }
}
  • 配置Spring核心組態檔

使用autowire=“byName”:

   <bean class="com.xxx.pojo.Student" id="student"/>
 <bean class="com.xxx.pojo.Student" id="student"/>
    <bean class="com.xxx.pojo.Student2" id="student2"/>
    <bean class="com.xxx.pojo.Teacher" id="teacher" autowire="byName">
        <property name="teach" value="Java"/>
    </bean>

測驗及結果:

public class BeanTest {
    @Test
    public void beanTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        Teacher teacher = context.getBean("teacher", Teacher.class);
        teacher.getStudent().study();
        teacher.getStudent2().study();
    }
}

在這里插入圖片描述
若修改Student的bean id值不為student,如:<bean class="com.xxx.pojo.Student" id="s"/>則會報空指標例外java.lang.NullPointerException at BeanTest.beanTest(BeanTest.java:24),因為按byName規則找不對應set方法,真正的setStudent就沒執行,物件就沒有初始化,所以呼叫時就會報空指標錯誤,

當一個bean節點帶有 autowire byName的屬性時:

  1. 將查找其類中所有的set方法名,例如setStudent,獲得將set去掉并且首字母小寫的字串,即student,
  2. 去spring容器中尋找是否有此字串名稱id的物件,如果有,就取出注入;如果沒有,就報空指標例外,

Spring注解開發

  • 環境搭建

  1. 在spring組態檔中引入context檔案頭
xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
  1. 開啟屬性注解支持!
<context:annotation-config/>
  1. 撰寫一個 Student類
public class Student {
    private String name;

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

    public String getName() {
        return name;
    }

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

    public Student() {
    }

    public Student(String name) {
        this.name = name;
    }
}

  1. 撰寫Spring核心組態檔:
<bean class="com.xxx.pojo.Student" id="student">
       <property name="name" value="小新"/>
   </bean>
  1. 測驗及結果:
@Test
    public void beanTest(){
       ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        Student student = context.getBean("student",Student.class);
        System.out.println(student);

在這里插入圖片描述

  • 使用@Configuration和@Bean給容器中注冊組件

  1. 撰寫一個配置類
/**
 *@program: springTest
 *@description: 在類上添加@Configuration注解使得該類成為Spring配置類,通過@Bean注解將該類注入到IoC容器,此時配置類==組態檔
 *@author: XieXianXin
 *@create: 2021-06-12 23:06
 */
// 這個配置類也是一個組件
@Configuration// 告訴Spring這是一個配置類
public class AnnotationStudent {
    @Bean// @Bean注解是給IOC容器中注冊一個bean,id默認是用方法名作為id
    public Student student(){
        return new Student("小新");
    }

}
  1. 測驗及結果:
    @Test
    public void beanTest(){
        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(AnnotationStudent.class);
        Student bean = context.getBean(Student.class);
        //回傳Student類在IoC容器中的id值
        String[] namesForType = context.getBeanNamesForType(Student.class);
        for (String s : namesForType) {
            System.out.println(s);
        }
        System.out.println(bean);
    }
}

在這里插入圖片描述若在配置類中給@Bean設定一個value值,如@Bean("stu")則測驗結果為:在這里插入圖片描述則我們在使用注解方式向Spring的IOC容器中注入JavaBean時,如果沒有在@Bean注解中明確指定bean的名稱,那么就會使用當前方法的名稱來作為bean的名稱;如果在@Bean注解中明確指定了bean的名稱,那么就會使用@Bean注解中指定的名稱來作為bean的名稱,

  • 使用@ComponentScan自動掃描組件并指定掃描規則

  • 開啟注解掃描,并洗掉之前組態檔中的bean

<context:component-scan base-package="com.xxx"/>
  • 在原有環境下創建一個com.xxx.service包,并創建一個Teacher類,并在類上添加一個@Service注解,同時,之前的Student類上也添加一個@Component注解
@Service
public class Teacher {
   private Student student;

   public void teach(){
       System.out.println("教授的學生是"+student);
   }

    @Override
    public String toString() {
        return "Teacher{" +
                "student=" + student +
                '}';
    }

    public Student getStudent() {
        return student;
    }

    public void setStudent(Student student) {
        this.student = student;
    }

    public Teacher(Student student) {
        this.student = student;
    }

    public Teacher() {
    }
}
  • 測驗及結果:
public class BeanTest {
        @Test
        public void beanTest() {
            ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
            String[] beanDefinitionNames = context.getBeanDefinitionNames();
            for (String definitionName : beanDefinitionNames) {
                System.out.println(definitionName);
            }
        }
}

在這里插入圖片描述以上可以看到:在配置注解掃描后,只要在com.xxx包下的所有子包中,加上了@Repository(Dao)、@Service(service)、@Controller、(web)@Component注解的類都會被掃描到,并自動注入到Spring容器中,(其實上面四個功能,目前為止是一樣的)

  • 使用注解配置XML包掃描
    我們可以在配置類中(前面的AnnotationStudent)使用@ComponentScan注解配置包掃描,由此代替xml中的<context:component-scan base-package="com.xxx"/>,先注釋掉之前的xml方式的注解掃描,接著
@Configuration// 告訴Spring這是一個配置類
@ComponentScan(value = "com.xxx")
public class AnnotationStudent {
    @Bean// @Bean注解是給IOC容器中注冊一個bean,id默認是用方法名作為id
    public Student student(){
        return new Student("小新");
    }
}

測驗結果跟之前一樣,因此,推薦以后都使用注解掃描就好了,Spring還是盡量用注解開發,MyBatis中還是用xml組態檔,

  • ComponentScan方法使用
    excludeFilters()不包含哪些包、includeFilters()包含哪些包,使用includeFilters時,需要在XML組態檔中先配置use-default-filters="false",即禁用默認的掃描所有包過濾規則才能生效,另外,ComponentScan還是一個可重復注解的注解,因此可以在一個類上重復使用這個注解,

  • 使用@Scope注解設定組件的作用域

  • 通過在類中添加注解@scope注解設定作用域,如:

// 這個配置類也是一個組件
@Configuration// 告訴Spring這是一個配置類

public class AnnotationStudent {
    @Scope("prototype")
    @Bean// @Bean注解是給IOC容器中注冊一個bean,id默認是用方法名作為id
    public Student student(){
        return new Student("小新");
    }

}
  • 結果:

如果為false,

  • @Scope注解中的取值如下所示:
    在這里插入圖片描述

  • 注解自動裝配組件(@Resource是JDK自帶的)

  • @Autowired
    @Autowired注解可以對類成員變數、方法和建構式進行標注,完成自動裝配的作業,@Autowired注解可以放在類、介面以及方法上,等價于<property name="屬性名" value=" 屬性值"/>@Autowired注解默認是優先按照型別去容器中找對應的組件,即:context.getBean(類名.class);,如果找到多個相同型別的組件,那么是將屬性名稱作為組件的id,到IOC容器中進行查找,即:context.getBean("組件的id");

  • @Qualifier
    @Autowired是根據型別自動裝配的,加上@Qualifier則可以根據byName的方式自動裝配,且Qualifier不能單獨使用,

  • @Resource
    是JDK自帶的注解 可以按名稱注入也可以按型別注入,默認是按名稱注入,沒有顯式指定名稱時,在spring容器中匹配與需要注入的bean屬性名相同的bean,如果還不同,@Resource會找到一個主型別匹配而不是一個特定的命名bean,

  • 懶加載@Lazy

  • 懶加載就是Spring容器啟動的時候,先不創建物件,在第一次使用(獲取)bean的時候Xxx xxx = context.getBean(Xxx.class);再來創建物件,并進行一些初始化,使用時,只需要在配置類的方法上加上@Lazy注解即可,

public class AnnotationStudent {
    @Lazy
    @Bean// @Bean注解是給IOC容器中注冊一個bean,id默認是用方法名作為id
    public Student student(){
        System.out.println("在容器中添加物件!");
        return new Student("小新");
    }
}
public class BeanTest {
        @Test
        public void beanTest() {
            ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
            System.out.println("容器創建完成!");
            Student student = context.getBean(Student.class);
            Student student1 = context.getBean(Student.class);
            System.out.println(student==student1);
        }
}

在這里插入圖片描述

  • 非懶加載模式(默認情況):bean在Spring容器啟動的時候ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");就會被創建,并且還加載到Spring容器中去了,
@Configuration// 告訴Spring這是一個配置類
public class AnnotationStudent {
    @Bean// @Bean注解是給IOC容器中注冊一個bean,id默認是用方法名作為id
    public Student student(){
        System.out.println("在容器中添加物件!");
        return new Student("小新");
    }
}
public class BeanTest {
        @Test
        public void beanTest() {
            ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
            System.out.println("容器創建完成!");
        }
}

在這里插入圖片描述

  • 使用@Import注解給容器中快速匯入一個組件

  • 注冊bean的方式通常有以下幾種:
    1.包掃描+給組件標注注解(@Controller、@Servcie、@Repository、@Component
    2.@Bean注解
    3.@Import注解(只作用在類上,可以在實際開發專案中匯入別人的類并注冊到容器中,這是兩外兩種無法做到的)例如在AnnotationStudent配置類上匯入Teacher類對應的bean實體(id默認是組件的全類名)
    4.使用FactoryBean介面(支持泛式)向Spring容器中注冊bean
// 這個配置類也是一個組件
    @Configuration// 告訴Spring這是一個配置類
    @Import(Teacher.class)
    public class AnnotationStudent {
        @Bean// @Bean注解是給IOC容器中注冊一個bean,id默認是用方法名作為id
        public Student student(){
            return new Student("小新");
        }
    }
public class BeanTest {
        @Test
        public void beanTest() {
           /* ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
            */
            AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(AnnotationStudent.class);
            String[] beanNamesForType = applicationContext.getBeanDefinitionNames();
            for (String s : beanNamesForType) {
                System.out.println(s);
            }
        }
}

在這里插入圖片描述當去除@Import后,輸出結果為:
在這里插入圖片描述

  • Bean生命周期

  • 常意義上講的bean的生命周期,指的是bean從創建到初始化,經過一系列的流程,最終銷毀的程序,如下圖所示,在Spring中,我們可以自己來指定bean的初始化和銷毀的方法@Bean(initMethod = "自定義的初始化方法名",destroyMethod = "自定義的銷毀方法名"),當容器在bean進行到當前生命周期的階段時,會自動呼叫我們自定義的初始化和銷毀方法,
    在這里插入圖片描述
  • 自定義一個Life類:
public class Life {
    public Life(){
        System.out.println("Life構造方法執行了!");
    }
    public void init(){
        System.out.println("Life初始化方法執行了!");
    }
    public void destroy(){
        System.out.println("Life銷毀方法執行了!");
    }
}
  • 配置類中注冊bean:
@Configuration// 告訴Spring這是一個配置類
    public class AnnotationStudent {
        @Bean(initMethod = "init",destroyMethod = "destroy")
        public Life life(){
            return new Life();
        }
    }
  • 測驗及結果:
public class BeanTest {
        @Test
        public void beanTest() {
            AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(AnnotationStudent.class);
            System.out.println("容器創建完成!");
            Life bean = applicationContext.getBean(Life.class);
        }
}

在這里插入圖片描述可以看到,對于單實體物件,先執行構造方法,再到初始化方法,而銷毀方法執行需要顯式關閉容器時候才執行applicationContext.close();
在這里插入圖片描述因此,我們可以自定義初始化方法和銷毀方法處理配置資料源問題,在初始化的時候,會對很多的資料源的屬性進行賦值操作;在銷毀的時候,我們需要對資料源的連接等資訊進行關閉和清理,

  • @Value注解為屬性賦值

  • 在Student類中的name屬性上加上@Value注解,等價于組態檔中的<bean id="student" class="com.xxx.pojo.Student"> <property name="name" value="xiaoxin"/> </bean>里的<property name="name" value="xiaoxin"/>,外面的bean是@Component注解作用,
@Component
public class Student {
    @Value("xiaoxin")
    private String name;

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

    public String getName() {
        return name;
    }

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

    public Student() {
    }

    public Student(String name) {
        this.name = name;
    }
}

  • 測驗及結果:
public class BeanTest {
        @Test
        public void beanTest() {
            ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
            Student student = context.getBean("student", Student.class);
            System.out.println(student);
        }
}

在這里插入圖片描述

  • 使用@PropertySource加載組態檔

  • 原始xml方式:
  • 在resources包下創建一個applicationContext.properties組態檔,內容為鍵值對形式:name=xiaoxin password=888888
  • 撰寫一個Property類,用于測驗:
public class Property {
    private String username;
    private Integer password;

    @Override
    public String toString() {
        return "Property{" +
                "username='" + username + '\'' +
                ", password=" + password +
                '}';
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public Integer getPassword() {
        return password;
    }

    public void setPassword(Integer password) {
        this.password = password;
    }

    public Property(String username, Integer password) {
        this.username = username;
        this.password = password;
    }

    public Property() {
    }
}
  • Spring核心組態檔內容為:
    <context:annotation-config />
    <context:component-scan base-package="com.xxx"/>
    <context:property-placeholder location="applicationContext.properties"/>
    <bean class="com.xxx.pojo.Property" id="property">
        <property name="username" value="${name}"/>
        <property name="password" value="${password}"/>
    </bean>
  • 測驗及結果:
public class BeanTest {
        @Test
        public void beanTest() {
            ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
            Property property = context.getBean("property", Property.class);
            System.out.println(property.toString());
        }
}

在這里插入圖片描述

  • 注解方式:
  • 保留原applicationContext.properties組態檔
  • 將Spring核心組態檔內容洗掉:只保留開啟注解:<context:annotation-config />
  • Property類完全使用注解代替:
@Configuration//表示該類是配置類,等價于核心組態檔
@ComponentScan(value = "com.xxx")//等價于<context:component-scan base-package="com.xxx"/>
@Component//注冊bean,默認id為類名(首字母小寫),等價于<bean class="com.xxx.pojo.Property" id="property"></bean>
@PropertySource("classpath:applicationContext.properties")//等價于<context:property-placeholder location="applicationContext.properties"/>
public class Property {
    @Value("${name}")//等價于<property name="username" value="${name}"/>
    private String username;
    @Value("${password}")//等價于<property name="password" value="${password}"/>
    private Integer password;

    @Override
    public String toString() {
        return "Property{" +
                "username='" + username + '\'' +
                ", password=" + password +
                '}';
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public Integer getPassword() {
        return password;
    }

    public void setPassword(Integer password) {
        this.password = password;
    }

    public Property(String username, Integer password) {
        this.username = username;
        this.password = password;
    }

    public Property() {
    }
}

  • 測驗及結果:
public class BeanTest {
        @Test
        public void beanTest() {
            AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(Property.class);
            Property bean = applicationContext.getBean(Property.class);
            System.out.println(bean.toString());
        }
}

在這里插入圖片描述

代理模式

代理模式:為其他物件提供一種代理以控制對這個物件的訪問,
在這里插入圖片描述在這里插入圖片描述在這里插入圖片描述

  • 靜態代理

案例:男孩相親,想找女孩結婚,于是男孩找媒婆進行代理,媒婆代理介紹女孩同時,還要收取一定的介紹費,

  • 介面類
/**
 *@program: springTest
 *@description: 相親介面
 *@author: XieXianXin
 *@create: 2021-06-13 20:36
 */
public interface Marry {
    //相親
    void marry();
}

  • 女孩(目標物件)
/**
 *@program: springTest
 *@description: 目標物件
 *@author: XieXianXin
 *@create: 2021-06-13 20:32
 */
public class Girl {
    private String name;

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

    public Girl(String name) {
        this.name = name;
    }

    public Girl() {
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}
  • 男孩(被代理物件)
/**
 *@program: springTest
 *@description: 被代理物件
 *@author: XieXianXin
 *@create: 2021-06-13 20:33
 */
public class Boy implements Marry {

    private Girl girl;

    public Boy(Girl girl) {
        this.girl = girl;
    }

    @Override
    public void marry() {
        System.out.println("想跟"+girl.getName()+"認識!");
    }
}

  • 媒婆(代理物件)
/**
 *@program: springTest
 *@description: 代理類
 *@author: XieXianXin
 *@create: 2021-06-13 20:33
 */
public class Proxy implements Marry {

    private Boy boy;

    public Proxy(Girl girl){
         boy = new Boy(girl);
    }

    @Override
    public void marry() {
        boy.marry();
    }
    public void earn(){
        System.out.println("媒婆收取介紹費");
    }
}
  • 測驗及結果
public class ProxyTest {
    @Test
    public void proxyTest(){
        Girl girl = new Girl();
        girl.setName("美女!");
        Proxy proxy = new Proxy(girl);
        proxy.marry();
        proxy.earn();
    }
}

在這里插入圖片描述

  • 靜態代理的好處:
    可以使得我們的真實角色更加純粹 . 不再去關注一些公共的事情,
    公共的業務由代理來完成 . 實作了業務的分工,
    公共業務發生擴展時變得更加集中和方便,

  • 靜態代理缺點:
    冗余,由于代理物件要實作與目標物件一致的介面,會產生過多的代理類,
    不易維護,一旦介面增加方法,目標物件與代理物件都要進行修改,

  • 動態代理

  • 點擊這里

Spring AOP

  • AOP

  • AOP(Aspect Oriented Programming)意為:面向切面編程,通過預編譯方式和運行期動態代理實作程式功能的統一維護的一種技術,AOP是OOP的延續,是軟體開發中的一個熱點,也是Spring框架中的一個重要內容,是函式式編程的一種衍生范型,利用AOP可以對業務邏輯的各個部分進行隔離,從而使得業務邏輯各部分之間的耦合度降低,提高程式的可重用性,同時提高了開發的效率,

  • 在這里插入圖片描述

  • 總的來說,AOP是指在程式的運行期間動態地將某段代碼切入到指定方法、指定位置進行運行的編程方式,AOP的底層是使用動態代理實作的,

  • AOP中相關概念
    橫切關注點:跨越應用程式多個模塊的方法或功能,即是,與我們業務邏輯無關的,但是我們需要關注的部分,就是橫切關注點,如日志 , 安全 , 快取 , 事務等等 …
    切面(ASPECT):橫切關注點 被模塊化 的特殊物件,即,它是一個類,
    通知(Advice):切面必須要完成的作業,即,它是類中的一個方法,
    目標(Target):被通知物件,
    代理(Proxy):向目標物件應用通知之后創建的物件,
    切入點(PointCut):切面通知 執行的 “地點”的定義,
    連接點(JointPoint):與切入點匹配的執行點,

  • SpringAOP中支持5種型別的Advice
    在這里插入圖片描述

  • Spring AOP的實作(3種)

  • 匯入依賴
    在原有的maven的pom.xml檔案中加上AOP織入依賴包

<!--使用Spring實作Aop,使用AOP織入,需要匯入一個依賴包!-->
      <dependency>
          <groupId>org.aspectj</groupId>
          <artifactId>aspectjweaver</artifactId>
          <version>1.9.4</version>
      </dependency>
  • 通過 Spring API 實作
  • 撰寫業務介面及其實作類
/**
 * @author shkstart 第一種,有介面方式,通過 Spring API 實作,要實作Uservice介面,具體看advice包
 *                  第二種,通過自定義類實作,運用的是AOP定義,不需要實作介面,具體看diy包
 *                  第三種,使用注解實作,具體看annotation包
 * @create 2021-06-04 16:12
 */
public interface UserService {
    public void add();
    public void delete();
    public void update();
    public void select();
}

/**
 *@program: Spring_study
 *@description:
 *@author: XieXianXin
 *@create: 2021-06-04 16:14
 */
public class UserServiceImpl implements UserService{

    @Override
    public void add() {
        System.out.println("增加用戶");
    }

    @Override
    public void delete() {
        System.out.println("洗掉用戶");
    }

    @Override
    public void update() {
        System.out.println("更新用戶");
    }

    @Override
    public void select() {
        System.out.println("查詢用戶");
    }
}

  • 撰寫增強類(分別有前置通知、后置通知和環繞通知)
/**
 *@program: Spring_study
 *@description: 前置通知,在方法前增強,實作MethodBeforeAdvice介面
 *@author: XieXianXin
 *@create: 2021-06-04 16:21
 */
public class BeforeAdvice implements MethodBeforeAdvice {
    //method : 要執行的目標物件的方法
    //args : 被呼叫的方法的引數
    //target : 目標物件
    @Override
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println("前置通知的"+target.getClass().getName()+"的"+method.getName()+"方法被執行了");
    }
}
/**
 *@program: Spring_study
 *@description: 后置通知,在方法后執行,實作AfterReturningAdvice介面
 *@author: XieXianXin
 *@create: 2021-06-04 17:00
 */
public class AfterAdvice implements AfterReturningAdvice {

    //returnValue 回傳值
    //method被呼叫的方法
    //args 被呼叫的方法的物件的引數
    //target 被呼叫的目標物件
    @Override
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {

        System.out.println("后置通知的"+target.getClass().getName()+"的"+method.getName()+"執行了,回傳值為:"+returnValue);
    }
}
/**
 *@program: Spring_study
 *@description: 環繞通知,在方法前后執行,實作MethodInterceptor介面
 *@author: XieXianXin
 *@create: 2021-06-04 17:07
 */
public class InterceptAdvice implements MethodInterceptor {
    @Override
    public Object invoke(MethodInvocation invocation) throws Throwable {
        try {
            System.out.println("環繞通知"+invocation.getMethod().getName()+"——方法前執行的");
            Method invocationMethod = (Method) invocation.proceed();
            System.out.println("環繞通知"+invocation.getMethod().getName()+"——方法后執行的");
            return invocationMethod;
        } catch (Throwable throwable) {
            throwable.printStackTrace();
        }
        return invocation;
    }
}

  • 配置Spring核心組態檔,實作AOP切入
    <!--第一種方式,通過介面實作-->
    <!--1.注冊bean-->

    <bean id="userService" class="com.xxx.service.UserServiceImpl"/>

    <bean id="beforeAdvice" class="com.xxx.advice.BeforeAdvice"/>
    <bean id="afterAdvice" class="com.xxx.advice.AfterAdvice"/>
    <bean id="interceptAdvice" class="com.xxx.advice.InterceptAdvice"/>
    <bean id="throwAdvice" class="com.xxx.advice.ThrowAdvice"/>

    <!--2.aop的配置-->
    <aop:config>
        <!--切入點 expression:運算式匹配要執行的方法-->
        <aop:pointcut id="pointCut" expression="execution(* com.xxx.service.UserServiceImpl.*(..))"/>
        <!--執行環繞; advice-ref執行方法 . pointcut-ref切入點-->
        <!--前置通知-->
        <aop:advisor advice-ref="beforeAdvice" pointcut-ref="pointCut"/>
        <!--后置通知-->
        <aop:advisor advice-ref="afterAdvice" pointcut-ref="pointCut"/>
        <!--環繞通知-->
        <aop:advisor advice-ref="interceptAdvice" pointcut-ref="pointCut"/>
        <!--例外拋出通知-->
        <aop:advisor advice-ref="throwAdvice" pointcut-ref="pointCut"/>
    </aop:config>

  • 測驗及結果
public class UserServiceImplTest {
    @Test
    public void myTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        //動態代理的是介面,不是物體類,因此不是UserServiceImpl.class
        UserService userService = context.getBean("userService", UserService.class);
        userService.delete();
        System.out.println("==============================");
        UserService userService1 = context.getBean("userService", UserService.class);
        userService1.add();
        System.out.println("==============================");
        UserService userService2 = context.getBean("userService", UserService.class);
        userService2.select();
        System.out.println("==============================");
        UserService userService3 = context.getBean("userService", UserService.class);
        userService3.update();
    }
}

在這里插入圖片描述

  1. 通過自定義類來實作
  • 保留之前的業務類UserServiceImpl
  • 撰寫自定義類DiyPointcut
/**
 *@program: Spring_study
 *@description: 自定義類實作AOP,一個類相當于一個切面,類的方法相當于通知
 *@author: XieXianXin
 *@create: 2021-06-04 21:16
 */
public class DiyPointcut {
    public void beforeAdvice(){
        System.out.println("前置通知");
    }
    public void afterAdvice(){
        System.out.println("后置通知");
    }
    public void interceptAdvice(ProceedingJoinPoint joinPoint){//環繞通知要有ProceedingJoinPoint joinPoint引數
        System.out.println("方法"+joinPoint.getSignature().getName()+"環繞通知前執行的陳述句");
        Object[] args = joinPoint.getArgs();
        try {
            Object proceed = joinPoint.proceed(args);
        } catch (Throwable throwable) {
            throwable.printStackTrace();
        }
        System.out.println("方法"+joinPoint.getSignature().getName()+"環繞通知后執行的陳述句");
    }
}

  • 配置Spring核心組態檔
    <!--第二種方式,通過自定義類實作-->
    <!--1.注冊bean-->
    <bean id="userService" class="com.xxx.service.UserServiceImpl"/>

    <bean id="diyPointcut" class="com.xxx.diy.DiyPointcut"/>

    <aop:config>
        <!--2.使用AOP標簽-->
        <aop:aspect ref="diyPointcut">
            <!--3.切入點-->
            <aop:pointcut id="pointcut" expression="execution(* com.xxx.service.UserServiceImpl.*(..))"/>
            <!--4.通知-->
            <!--前置通知-->
            <aop:before method="beforeAdvice" pointcut-ref="pointcut"/>
            <!--后置通知-->
            <aop:after method="afterAdvice" pointcut-ref="pointcut"/>
            <!--環繞通知-->
            <aop:around method="interceptAdvice" pointcut-ref="pointcut"/>
        </aop:aspect>
    </aop:config>
  • 測驗及結果
public class UserServiceImplTest {
    @Test
    public void myTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        //動態代理的是介面,不是物體類,因此不是UserServiceImpl.class
        UserService userService = context.getBean("userService", UserService.class);
        userService.delete();
        System.out.println("==============================");
        UserService userService1 = context.getBean("userService", UserService.class);
        userService1.add();
        System.out.println("==============================");
        UserService userService2 = context.getBean("userService", UserService.class);
        userService2.select();
        System.out.println("==============================");
        UserService userService3 = context.getBean("userService", UserService.class);
        userService3.update();
    }
}

在這里插入圖片描述

  1. 通過自定義類來實作
    • 撰寫注解實作的增強類AnnotationAdvice
/**
 *@program: Spring_study
 *@description: 使用注解進行AOP設計
 *@author: XieXianXin
 *@create: 2021-06-04 22:18
 */
@Aspect
public class AnnotationAdvice {

    @Before("execution(* com.xxx.service.UserServiceImpl.*(..))")//運算式中寫要被增強的類
    public void before(){
        System.out.println("前置通知");
    }

    @After("execution(* com.xxx.service.UserServiceImpl.*(..))")
    public void after(){
        System.out.println("后置通知");
    }

    @Around("execution(* com.xxx.service.UserServiceImpl.*(..))")
    public void around(ProceedingJoinPoint joinPoint) throws Throwable {
        System.out.println("環繞通知執行前");
        System.out.println("簽名:"+joinPoint.getSignature());
        //執行目標方法proceed
        Object proceed = joinPoint.proceed();
        System.out.println("環繞通知執行后");
        System.out.println(proceed);
    }
}

  • 開啟注解掃描和注冊bean
<!--指定要掃描的包,這個包下的注解就會生效-->
    <context:component-scan base-package="com.xxx.service"/>
    <context:annotation-config/>
 <aop:aspectj-autoproxy proxy-target-class="false"/>

    <!--2.注冊bean,只需要注冊增強的那個類-->
    <bean class="com.xxx.service.UserServiceImpl" id="userService"/>
    <bean id="annotationAdvice" class="com.xxx.annotation.AnnotationAdvice"/>
  • 測驗及結果
public class UserServiceImplTest {
    @Test
    public void myTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        //動態代理的是介面,不是物體類,因此不是UserServiceImpl.class
        UserService userService = context.getBean("userService", UserService.class);
        userService.delete();
        System.out.println("==============================");
        UserService userService1 = context.getBean("userService", UserService.class);
        userService1.add();
        System.out.println("==============================");
        UserService userService2 = context.getBean("userService", UserService.class);
        userService2.select();
        System.out.println("==============================");
        UserService userService3 = context.getBean("userService", UserService.class);
        userService3.update();
    }
}

在這里插入圖片描述

Spring事務管理及Spring整合MyBatis代碼示例

  • Spring事務管理

  • 什么是事務:事務就是把一系列的動作當成一個獨立的作業單元,這些動作要么都執行,要么都不執行,
  • 事務四個特性-ACID:
    原子性(atomicity)
    事務是原子性操作,由一系列動作組成,事務的原子性確保動作要么全部完成,要么完全不起作用
    一致性(consistency)
    一旦所有事務動作完成,事務就要被提交,資料和資源處于一種滿足業務規則的一致性狀態中
    隔離性(isolation)
    可能多個事務會同時處理相同的資料,因此每個事務都應該與其他事務隔離開來,防止資料損壞
    持久性(durability)
    事務一旦完成,無論系統發生什么錯誤,結果都不會受到影響,通常情況下,事務的結果被寫到持久化存盤器中
  • Spring支持編程式事務管理和宣告式的事務管理:
    宣告式事務管理
    宣告式事務管理建立在AOP之上,其本質是對方法前后進行攔截,然后在目標方法開始之前創建或者加入一個事務,執行完目標方法之后根據執行的情況提交或者回滾,
    編程式事務每次實作都要單獨實作,但業務量大功能復雜時,使用編程式事務無疑是痛苦的,而宣告式事務不同,宣告式事務屬于無侵入式,不會影響業務邏輯的實作,只需要在組態檔中做相關的事務規則宣告或者通過注解的方式,便可以將事務規則應用到業務邏輯中,
    顯然宣告式事務管理要優于編程式事務管理,這正是Spring倡導的非侵入式的編程方式,唯一不足的地方就是宣告式事務管理的粒度是方法級別,而編程式事務管理是可以到代碼塊的,但是可以通過提取方法的方式完成宣告式事務管理的配置,
    使用Spring管理事務,注意頭檔案的約束匯入:
xmlns:tx="http://www.springframework.org/schema/tx"

http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
  • 宣告式事務配置拓展:
    JDBC事務
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
       <property name="dataSource" ref="dataSource" />
</bean>
  • 自動代理的配置
!-- Spring事務管理 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource" />
</bean>
<!-- 配置事務的傳播特性 -->
<bean id="baseTransactionProxy" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean" abstract="true" >
  <property name="transactionManager" ref="transactionManager" />
  <property name="transactionAttributes">
    <props>
      <prop key="add*">PROPAGATION_REQUIRED</prop>
      <prop key="edit*">PROPAGATION_REQUIRED</prop>
      <prop key="remove*">PROPAGATION_REQUIRED</prop>
      <prop key="insert*">PROPAGATION_REQUIRED</prop>
      <prop key="update*">PROPAGATION_REQUIRED</prop>
      <prop key="del*">PROPAGATION_REQUIRED</prop>
      <prop key="*">readOnly</prop>
    </props>
  </property>
</bean>
  • 基于 命名空間的宣告式事務管理
<beans......>
  ......
  <bean id="bankService" 
  class="footmark.spring.core.tx.declare.namespace.BankServiceImpl">
    <property name="bankDao" ref="bankDao"/>
  </bean>
  <tx:advice id="bankAdvice" transaction-manager="transactionManager">
    <tx:attributes>
      <tx:method name="transfer" propagation="REQUIRED"/>
    </tx:attributes>
  </tx:advice>
  <aop:config>
    <aop:pointcut id="bankPointcut" expression="execution(* *.transfer(..))"/>
    <aop:advisor advice-ref="bankAdvice" pointcut-ref="bankPointcut"/>
  </aop:config>
  ......
</beans>
  • @Transactional 的宣告式事務管理
    啟用tx的annotation:
<tx:annotation-driven transaction-manager="transactionManager"/>
  • @Transactional 可以作用于介面、介面方法、類以及類方法上,當作用于類上時,該類的所有 public 方法將都具有該型別的事務屬性,同時,我們也可以在方法級別使用該標注來覆寫類級別的定義,

編程式事務管理
編程式事務管理是侵入性事務管理,使用TransactionTemplate或者直接使用PlatformTransactionManager,對于編程式事務管理,Spring推薦使用TransactionTemplate,

  • Spring事務的傳播行為:
    事務的第一個方面是傳播行為(propagation behavior),當事務方法被另一個事務方法呼叫時,必須指定事務應該如何傳播,例如:方法可能繼續在現有事務中運行,也可能開啟一個新事務,并在自己的事務中運行,Spring定義了七種傳播行為:
    在這里插入圖片描述

  • 事務的隔離級別:
    事務的第二個維度就是隔離級別(isolation level),

     臟讀(Dirty reads)——臟讀發生在一個事務讀取了另一個事務改寫但尚未提交的資料時,如果改寫在稍后被回滾了,那么第一個事務獲取的資料就是無效的,
     不可重復讀(Nonrepeatable read)——不可重復讀發生在一個事務執行相同的查詢兩次或兩次以上,但是每次都得到不同的資料時,這通常是因為另一個并發事務在兩次查詢期間進行了更新,
     幻讀(Phantom read)——幻讀與不可重復讀類似,它發生在一個事務(T1)讀取了幾行資料,接著另一個并發事務(T2)插入了一些資料時,在隨后的查詢中,第一個事務(T1)就會發現多了一些原本不存在的記錄,
    
  • Spring結合事務整合MyBatis示例

  1. 匯入相關Jar包
<!--Spring整合Mybatis需要如下包,都是放在dependencies內-->
    <dependencies>
        <!--junit-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <!--mysql驅動-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.15</version>
        </dependency>
        <!--mybatis-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.2</version>
        </dependency>
        <!--匯入spring,maven依賴-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.2.12.RELEASE</version>
        </dependency>
        <!--使用Spring實作Aop,使用AOP織入-->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.9.4</version>
        </dependency>
        <!--spring操作資料庫也需要一個spring-jdbc包-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>5.3.7</version>
        </dependency>
        <!--整合必要的一個包,mybatis-spring,使用2.0以上版本-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>2.0.5</version>
        </dependency>

        <!--LOG4J-->
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>RELEASE</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
            <scope>compile</scope>
        </dependency>

    </dependencies>

    <!--需要解決的亂碼以及maven靜態資源過濾問題等在build內完成-->
    <!--解決單元測驗中文亂碼-->
    <build>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.12.4</version>
                <configuration>
                    <argLine>
                        -Dfile.encoding=UTF-8
                    </argLine>
                </configuration>
            </plugin>
        </plugins>

        <!--可能出現問題說明:Maven靜態資源過濾(匯出)問題
         Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration.
         Cause: java.io.IOException: Could not find resource com/xxx/dao/UserMapper.xml
         原因是idea默認不編譯src目錄下的xml檔案,所以加載不到
         解決辦法在pom檔案中的build標簽內加入如下配置,則可以找到java和resources下的所有properties和xml檔案了
     -->
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </resource>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </resource>
        </resources>

    </build>

  1. 撰寫組態檔及加入日志
    mybatis-config.xml
<configuration>

    <!--
    configuration" 里的標簽順序如下:(否則報錯如下資訊)
     "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?
     objectWrapperFactory?,reflectorFactory?,plugins?,environments?,
     databaseIdProvider?,mappers?)".
    -->

    <!--標準的日志工廠實作(常用:STDOUT_LOGGING,LOG4J),下面的value值建議去mybaits檔案復制
        日志就是記錄程式的運行軌跡,方便查找關鍵資訊,也方便快速定位解決問題,
    -->
    <settings>
        <!--下劃線駝峰自動轉換-->
        <setting name="mapUnderscoreToCamelCase" value="true"/>
        <setting name="logImpl" value="LOG4J"/>
    </settings>

    <!--給這個包下的類起別名-->
    <typeAliases>
        <package name="com.xxx.pojo"/>
    </typeAliases>

    <mappers>
        <mapper resource="com/xxx/mapper/UserMapper.xml"/>
    </mappers>

    
</configuration>

spring-mybatis.xml

<!--
spring整合mybatis,根據mybatis-spring檔案可以,需要一個資料源獲取SqlSessionFactory 和至少一個資料映射器類
具體查看檔案:http://mybatis.org/spring/zh/getting-started.html
-->

    <!--
    DataSource:使用Spring的資料源替換Mybatis的配置:druid c3p0,dbcp
    這里使用Speing提供的JDBC:org.springframework.jdbc.datasource.DriverManagerDataSource
    前提是要匯入: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/mybaits?serverTimezone=UTC&amp;allowPublicKeyRetrieval=true&amp;useSSL=false&amp;characterEncoding=UTF-8"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
    </bean>

    <!--MyBatis-Spring 中,可使用 SqlSessionFactoryBean來創建 SqlSessionFactory-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
    <!--跟在mybatis中學習一樣,需要在mybatis核心組態檔系結xxxmapper.xml檔案
        這里也需要系結mybatis核心組態檔,系結后,mybatis核心組態檔可以完成的這里也都可以完成,則mybatis-config檔案可以不要也行
    -->
        <!--系結mybatis-->
        <property name="configLocation" value="classpath:mybatis-config.xml"/>
        <!--注冊映射器,等價于mybatis核心組態檔中的:
            <mappers>
            <mapper resource="com/xxx/mapper/UserMapper.xml"/>
            </mappers>
        -->
        <!--<property name="mapperLocations" value="classpath:com/xxx/mapper/*.xml"/>-->
    </bean>

    <!--注冊SqlSessionTemplate,相當于我們使用的sqlSession,因此可將id命名為此好記-->
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <!--因為sqlSessionTemplate只有構造方法而無set方法,只能使用構造器注入-->
        <constructor-arg index="0" ref="sqlSessionFactory"/>
    </bean>

    <!--配置宣告式事務(AOP原理,不改變源代碼條件下增加事務),而編程式事務要在源代碼上自動try catch
        具體可查看檔案:http://mybatis.org/spring/zh/transactions.html
    -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>
    <!--結合AOP實作事務的織入-->
    <!--配置事務的通知-->
    <tx:advice id="transactionAdvice" transaction-manager="transactionManager">
        <!--給具體方法配置事務和傳播新特性(propagation=REQUIRED是默認的,即會自動創建事務)
             具體查看:https://blog.csdn.net/edward0830ly/article/details/7569954
             name="*"表示給所有方法配置事務,也可給具體方法,給出方法名即可
             -->
        <tx:attributes>
            <tx:method name="*" propagation="REQUIRED"/>
        </tx:attributes>
    </tx:advice>
   <!--配置事務切入-->
    <aop:config>
        <aop:pointcut id="transactionPointcut" expression="execution(* com.xxx.mapper.*.*(..))"/>
        <aop:advisor advice-ref="transactionAdvice" pointcut-ref="transactionPointcut"/>
    </aop:config>

applicationContext.xml

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

    <bean id="userMapperImpl_2" class="com.xxx.mapper.UserMapperImpl_2">
        <property name="sqlSessionFactory" ref="sqlSessionFactory"/>
    </bean>

log4j.properties

#將等級為DEBUG的日志資訊輸出到console和file這兩個目的地,console和file的定義在下面的代碼
log4j.rootLogger=DEBUG,console,file

#控制臺輸出的相關設定
log4j.appender.console = org.apache.log4j.ConsoleAppender
log4j.appender.console.Target = System.out
log4j.appender.console.Threshold=DEBUG
log4j.appender.console.layout = org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=[%c]-%m%n

#檔案輸出的相關設定
log4j.appender.file = org.apache.log4j.RollingFileAppender
log4j.appender.file.File=./log/xxx.log
log4j.appender.file.MaxFileSize=10mb
log4j.appender.file.Threshold=DEBUG
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=[%p][%d{yy-MM-dd}][%c]%m%n

#日志輸出級別
log4j.logger.org.mybatis=DEBUG
log4j.logger.java.sql=DEBUG
log4j.logger.java.sql.Statement=DEBUG
log4j.logger.java.sql.ResultSet=DEBUG
log4j.logger.java.sql.PreparedStatement=DEBUG
  1. 撰寫介面及其實作類和配置對應的mapper.xml檔案

UserMapper介面

public interface UserMapper {
    //查詢所有用戶
    public List<User> queryUser();

    //添加一個用戶
    int addUser(User user);

    //根據id洗掉用戶
    int deleteUser(int id);
}

UserMapperImpl_2實作類

/**
 *@program: Spring_study
 *@description: spring-mybatis整合方式二:繼承SqlSessionDaoSupport實作介面
 *@author: XieXianXin
 *@create: 2021-06-05 22:08
 */
public class UserMapperImpl_2 extends SqlSessionDaoSupport implements UserMapper {
    @Override
    public List<User> queryUser() {
        return getSqlSession().getMapper(UserMapper.class).queryUser();
    }

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

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

UserMapper.xml

<!--namespace==系結一個對應的Dao/Mapper介面,以后Mapper.xml檔案都放在resourse下,
                                            但是要建立一個跟Mapper介面相對應得包
    注意!!這里有一個坑,當在resources下建立包時候,不要寫為:com.xxx.dao
                                                      應該為:com/xxx/dao
                                           -->
<!--詭異事件,在學習mabatis適合,寫UTF-8沒錯,但是整合這里的所有XML卻報錯:1 位元組的 UTF-8 序列的位元組 1 無效,
    解決方法:將所有的XML檔案UTF-8改為UTF8即可-->
<mapper namespace="com.xxx.mapper.UserMapper">
    <!--
    last_name已經進行自動駝峰轉換,則這里不用resultMap進行不同名的映射
    resultType中也起了別名,不用再寫com.xxx.pojo了
    -->
    <select id="queryUser" resultType="User">
        select * from user
    </select>

    <insert id="addUser" parameterType="User">
        insert into user (id,last_name,email) values (#{id},#{lastName},#{email})
    </insert>

    <delete id="deleteUser" parameterType="_int">
        delete from user where id = #{id}
    </delete>

</mapper>
  1. 測驗及結果

手動設定錯誤,如在插入陳述句上寫錯insert為inserts

  <insert id="addUser" parameterType="User">
        inserts into user (id,last_name,email) values (#{id},#{lastName},#{email})
    </insert>
public class UserMapperTest {
    static Logger logger = Logger.getLogger(UserMapperTest.class);
    @Test
   @Test
    public void userMapperImpl_2(){
       ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserMapper userMapperImpl_2 = context.getBean("userMapperImpl_2", UserMapper.class);
        userMapperImpl_2.addUser(new User(12,"xiaoxin","com@xiaoxin"));
        userMapperImpl_2.deleteUser(8);
        for (User user : userMapperImpl_2.queryUser()) {
            System.out.println(user);
        }
    }
}

如果為插入陳述句錯誤,則專案不能正常插入,事務會回滾,
在這里插入圖片描述查看并重繪資料庫表,沒有變化,
在這里插入圖片描述
接著將錯誤改正后,再次測驗結果為:
在這里插入圖片描述成功添加和洗掉,事務保證了資料的一致性,查看資料庫表為:
在這里插入圖片描述
啊!終于搞完了,五萬多字數,歷時幾天將我所學的Spring知識濃縮到一篇文章給大家了,當然啦,整理的主要目的是為了給自己復習所用的,只要學不死就往死里學,趁年輕,別等頭發掉光了才去后悔當初為什么沒有好好學,哈哈!
加油吧,騷年!

轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/287598.html

標籤:其他

上一篇:關于MVVM和MVC的一些總結

下一篇:scratch碰蘋果 藍橋杯選拔賽STEMA真題和答案決議

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • 面試突擊第一季,第二季,第三季

    第一季必考 https://www.bilibili.com/video/BV1FE411y79Y?from=search&seid=15921726601957489746 第二季分布式 https://www.bilibili.com/video/BV13f4y127ee/?spm_id_fro ......

    uj5u.com 2020-09-10 05:35:24 more
  • 第三單元作業總結

    1.前言 這應該是本學期最后一次寫作業總結了吧。總體來說,對作業的節奏也差不多掌握了,作業做起來的效率也更高了。雖然和之前的作業一樣,作業中都要用到新的知識,但是相比之前,更加懂得了如何利用工具以及資料。雖然之間卡過殼,但總體而言,這幾次作業還算完成的比較好。 2.作業程序總結 相比前兩個單元,此單 ......

    uj5u.com 2020-09-10 05:35:41 more
  • 北航OO(2020)第四單元博客作業暨課程總結博客

    北航OO(2020)第四單元博客作業暨課程總結博客 本單元作業的架構設計 在本單元中,由于UML圖具有比較清晰的樹形結構,因此我對其中需要進行查詢操作的元素進行了包裝,在樹的父節點中存盤所有孩子的參考。考慮到性能問題,我采用了快取機制,一次查詢后盡可能快取已經遍歷過的資訊,以減少遍歷次數。 本單元我 ......

    uj5u.com 2020-09-10 05:35:48 more
  • BUAA_OO_第四單元

    一、UML決議器設計 ? 先看下題目:第四單元實作一個基于JDK 8帶有效性檢查的UML(Unified Modeling Language)類圖,順序圖,狀態圖分析器 MyUmlInteraction,實際上我們要建立一個有向圖模型,UML中的物件(元素)可能與同級元素連接,也可與低級元素相連形成 ......

    uj5u.com 2020-09-10 05:35:54 more
  • 6.1邏輯運算子

    邏輯運算子 1. && 短路與 運算式1 && 運算式2 01.運算式1為true并且運算式2也為true 整體回傳為true 02.運算式1為false,將不會執行運算式2 整體回傳為false 03.只要有一個運算式為false 整體回傳為false 2. || 短路或 運算式1 || 運算式2 ......

    uj5u.com 2020-09-10 05:35:56 more
  • BUAAOO 第四單元 & 課程總結

    1. 第四單元:StarUml檔案決議 本單元采用了圖模型決議UML。 UML檔案可以抽象為圖、子圖、邊的邏輯結構。 在實作中,圖的節點包括類、介面、屬性,子圖包括狀態圖、順序圖等。 采用了三次遍歷UML元素的方法建圖,第一遍遍歷建點,第二、三次遍歷設定屬性、連邊,實作圖物件的初始化。這里借鑒了一些 ......

    uj5u.com 2020-09-10 05:36:06 more
  • 談談我對C# 多型的理解

    面向物件三要素:封裝、繼承、多型。 封裝和繼承,這兩個比較好理解,但要理解多型的話,可就稍微有點難度了。今天,我們就來講講多型的理解。 我們應該經常會看到面試題目:請談談對多型的理解。 其實呢,多型非常簡單,就一句話:呼叫同一種方法產生了不同的結果。 具體實作方式有三種。 一、多載 多載很簡單。 p ......

    uj5u.com 2020-09-10 05:36:09 more
  • Python 資料驅動工具:DDT

    背景 python 的unittest 沒有自帶資料驅動功能。 所以如果使用unittest,同時又想使用資料驅動,那么就可以使用DDT來完成。 DDT是 “Data-Driven Tests”的縮寫。 資料:http://ddt.readthedocs.io/en/latest/ 使用方法 dd. ......

    uj5u.com 2020-09-10 05:36:13 more
  • Python里面的xlrd模塊詳解

    那我就一下面積個問題對xlrd模塊進行學習一下: 1.什么是xlrd模塊? 2.為什么使用xlrd模塊? 3.怎樣使用xlrd模塊? 1.什么是xlrd模塊? ?python操作excel主要用到xlrd和xlwt這兩個庫,即xlrd是讀excel,xlwt是寫excel的庫。 今天就先來說一下xl ......

    uj5u.com 2020-09-10 05:36:28 more
  • 當我們創建HashMap時,底層到底做了什么?

    jdk1.7中的底層實作程序(底層基于陣列+鏈表) 在我們new HashMap()時,底層創建了默認長度為16的一維陣列Entry[ ] table。當我們呼叫map.put(key1,value1)方法向HashMap里添加資料的時候: 首先,呼叫key1所在類的hashCode()計算key1 ......

    uj5u.com 2020-09-10 05:36:38 more
最新发布
  • 【中介者設計模式詳解】C/Java/JS/Go/Python/TS不同語言實作

    * 中介者模式是一種行為型設計模式,它可以用來減少類之間的直接依賴關系,
    * 將物件之間的通信封裝到一個中介者物件中,從而使得各個物件之間的關系更加松散。
    * 在中介者模式中,物件之間不再直接相互互動,而是通過中介者來中轉訊息。 ......

    uj5u.com 2023-04-20 08:20:47 more
  • 露天煤礦現場調研和交流案例分享

    他們集團的資訊化公司及研究院在一個礦區正在做智能礦山的統一平臺的 試點,專案投資大概1億,包括了礦山的各方面的內容,顯示得我們這次交流有點多余。他們2年前開始做智能礦山的規劃,有很多煤礦行業專家的加持,他們的描述是非常完美,但是去年底應該上線的平臺,現在還沒有看到影子。他們確實有很多場景需求,但是被... ......

    uj5u.com 2023-04-20 08:20:25 more
  • 《社區人員管理》實戰案例設計&個人案例分享

    設計是一個讓人夢想成真程序,開始編碼、測驗、除錯之前進行需求分析和架構設計,才能保證關鍵方面都做正確 ......

    uj5u.com 2023-04-20 08:20:17 more
  • 軟體架構生態化-多角色交付的探索實踐

    作為一個技術架構師,不僅僅要緊跟行業技術趨勢,還要結合研發團隊現狀及痛點,探索新的交付方案。在日常中,你是否遇到如下問題 “ 業務需求排期長研發是瓶頸;非研發角色感受不到研發技改提效的變化;引入ISV 團隊又擔心質量和安全,培訓周期長“等等,基于此我們探索了一種新的技術體系及交付方案來解決如上問題。 ......

    uj5u.com 2023-04-20 08:20:10 more
  • 【中介者設計模式詳解】C/Java/JS/Go/Python/TS不同語言實作

    * 中介者模式是一種行為型設計模式,它可以用來減少類之間的直接依賴關系,
    * 將物件之間的通信封裝到一個中介者物件中,從而使得各個物件之間的關系更加松散。
    * 在中介者模式中,物件之間不再直接相互互動,而是通過中介者來中轉訊息。 ......

    uj5u.com 2023-04-20 08:19:44 more
  • 露天煤礦現場調研和交流案例分享

    他們集團的資訊化公司及研究院在一個礦區正在做智能礦山的統一平臺的 試點,專案投資大概1億,包括了礦山的各方面的內容,顯示得我們這次交流有點多余。他們2年前開始做智能礦山的規劃,有很多煤礦行業專家的加持,他們的描述是非常完美,但是去年底應該上線的平臺,現在還沒有看到影子。他們確實有很多場景需求,但是被... ......

    uj5u.com 2023-04-20 08:19:07 more
  • 《社區人員管理》實戰案例設計&個人案例分享

    設計是一個讓人夢想成真程序,開始編碼、測驗、除錯之前進行需求分析和架構設計,才能保證關鍵方面都做正確 ......

    uj5u.com 2023-04-20 08:18:57 more
  • 軟體架構生態化-多角色交付的探索實踐

    作為一個技術架構師,不僅僅要緊跟行業技術趨勢,還要結合研發團隊現狀及痛點,探索新的交付方案。在日常中,你是否遇到如下問題 “ 業務需求排期長研發是瓶頸;非研發角色感受不到研發技改提效的變化;引入ISV 團隊又擔心質量和安全,培訓周期長“等等,基于此我們探索了一種新的技術體系及交付方案來解決如上問題。 ......

    uj5u.com 2023-04-20 08:18:49 more
  • 05單件模式

    #經典的單件模式 public class Singleton { private static Singleton uniqueInstance; //一個靜態變數持有Singleton類的唯一實體。 // 其他有用的實體變數寫在這里 //構造器宣告為私有,只有Singleton可以實體化這個類! ......

    uj5u.com 2023-04-19 08:42:51 more
  • 【架構與設計】常見微服務分層架構的區別和落地實踐

    軟體工程的方方面面都遵循一個最基本的道理:沒有銀彈,架構分層模型更是如此,每一種都有各自優缺點,所以請根據不同的業務場景,并遵循簡單、可演進這兩個重要的架構原則選擇合適的架構分層模型即可。 ......

    uj5u.com 2023-04-19 08:42:41 more