IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> 春天 -使 Java简单的、现代的、富有成效、反应性。 -> 正文阅读

[Java知识库]春天 -使 Java简单的、现代的、富有成效、反应性。

1. Spring概述

1.1 什么是框架?

框架( Framework ):框(指其约束性)架(指其支撑性),在软件设计中指为解决一个开放性问题而 设计的具有一定约束性的支撑结构。在此结构上可以根据具体问题扩展、安插更多的组成部分,从而更 迅速和方便地构建完整的解决问题的方案。
1、框架本身一般不完整到可以解决特定问题
2、框架天生就是为扩展而设计的
3、框架里面可以为后续扩展的组件提供很多辅助性、支撑性的方便易用的实用工具(utilities), 也就是说框架时常配套了一些帮助解决某类问题的库(libraries)或工具(tools)。

1.2 Spring是什么

Spring 官网 https://spring.io
Spring 被称为 J2EE 的春天,是一个是分层的 Java SE/EE full-stack 开源 轻量级 Java 开发框架, 是 最受欢迎的企业级 Java 应用程序开发框架,数以百万的来自世界各地的开发人员使用 Spring 框架来创 建性能好、易于测试、可重用的代码。
Spring 具有 控制反转 IoC )和 面向切面 AOP )两大核心。 Java Spring 框架通过声明式方式灵活地进 行事务的管理 ,提高开发效率和质量。
Spring 框架不仅限于服务器端的开发。从简单性、可测试性和松耦合的角度而言,任何 Java 应用都可 以从 Spring 中受益。 Spring 框架还是一个超级粘合平台,除了自己提供功能外,还提供粘合其他技术 和框架的能力。

1.3 Spring的优势

  1. 方便解耦,简化开发:Spring 就是一个大工厂,可以将所有对象的创建和依赖关系的维护交给 Spring 管理。
  2. 方便集成各种优秀框架:Spring 不排斥各种优秀的开源框架,其内部提供了对各种优秀框架(如 Struts2HibernateMyBatis 等)的直接支持。
  3. 降低 Java EE API 的使用难度:Spring Java EE 开发中非常难用的一些 APIJDBCJavaMail、远程调用等)都提供了封装,使这些 API 应用的难度大大降低。
  4. 方便程序的测试:Spring 支持 JUnit4 ,可以通过注解方便地测试 Spring 程序。
  5. AOP 编程的支持:Spring 提供面向切面编程,可以方便地实现对程序进行权限拦截和运行监控等功能。
  6. 声明式事务的支持:只需要通过配置就可以完成对事务的管理,而无须手动编程

1.4 Spring的体系结构

Spring 为我们提供了一站式解决方案,但 Spring 是模块化的,允许咱们挑选和选择适用于项目的模块, 不需要把剩余部分也引入。 Spring 框架提供约 20 个模块,可以根据应用程序的要求来选择。

?1.4.1 核心容器

核心容器由 Spring-core Spring-beans Spring-context Spring-context-support Spring-
expression SpEL Spring 表达式语言, Spring Expression Language )等模块组成
  • Spring-core 模块提供了框架的基本组成部分,包括 IoC 和依赖注入功能。
  • Spring-beans 模块提供 BeanFactory,工厂模式的微妙实现,它移除了编码式单例的需要,并且 可以把配置和依赖从实际编码逻辑中解耦。
  • context 模块建立在由 corebeans 模块的基础上建立起来的,它以一种类似于 JNDI 注册的方 式访问对象。Context 模块继承自 Bean 模块,并且添加了国际化(比如,使用资源束)、事件传 播、资源加载和透明地创建上下文(比如,通过 Servelet 容器)等功能。Context 模块也支持 Java EE 的功能,比如 EJBJMX 和远程调用等。ApplicationContext 接口是 Context 模块的焦点。
  • Spring-context-support 提供了对第三方集成到 Spring 上下文的支持,比如缓存(EhCache, Guava, JCache)、邮件(JavaMail)、调度(CommonJ, Quartz)、模板引擎(FreeMarker, JasperReports, Velocity)等。
  • Spring-expression 模块提供了强大的表达式语言,用于在运行时查询和操作对象图。它是 JSP2.1 规范中定义的统一表达式语言的扩展,支持 set get 属性值、属性赋值、方法调用、访问数组集合及索引的内容、逻辑算术运算、命名变量、通过名字从 Spring IoC 容器检索对象,还支持列表的投影、选择以及聚合等。

?它们的完整依赖关系如下图所示:

?

1.4.2 数据访问/集成

JDBC=Java Data Base Connectivity ORM=Object Relational Mapping OXM=Object XML
Mapping JMS=Java Message Service
  • JDBC 模块提供了 JDBC 抽象层,它消除了冗长的 JDBC 编码和对数据库供应商特定错误代码的解 析。
  • ORM 模块提供了对流行的对象关系映射 API 的集成,包括 JPA JDO Hibernate 等。通过此模 块可以让这些 ORM 框架和 Spring 的其它功能整合,比如前面提及的事务管理。
  • OXM 模块提供了对 OXM 实现的支持,比如 JAXB Castor XML Beans JiBX XStream 等。
  • JMS 模块包含生产( produce )和消费( consume )消息的功能。从 Spring 4.1 开始,集成了
    Spring-messaging 模块
  • 事务模块为实现特殊接口类及所有的 POJO 支持编程式和声明式事务管理。

1.4.3 Web

  • Web 模块提供面向 web 的基本功能和面向 web 的应用上下文,比如多部分( multipart )文件上 传功能、使用 Servlet 监听器初始化 IoC 容器等。它还包括 HTTP 客户端以及 Spring 远程调用中与 web 相关的部分。
  • Web-MVC 模块为 web 应用提供了模型视图控制( MVC )和 REST Web 服务的实现。 Spring 的 MVC 框架可以使领域模型代码和 web 表单完全地分离,且可以与 Spring 框架的其它所有功能进行集成。
  • Web-Socket 模块为 WebSocket-based 提供了支持,而且在 web 应用程序中提供了客户端和服 务器端之间通信的两种方式。
  • Web-Portlet 模块提供了用于 Portlet 环境的 MVC 实现,并反映了 Spring-webmvc 模块的功能。

1.4.4 其他

  • AOP 模块提供了面向方面(切面)的编程实现,允许你定义方法拦截器和切入点对代码进行干净 地解耦,从而使实现功能的代码彻底的解耦出来。
  • Aspects 模块提供了与 AspectJ 的集成,这是一个功能强大且成熟的面向切面编程( AOP )框 架。
  • Instrumentation 模块在一定的应用服务器中提供了类 instrumentation 的支持和类加载器的实 现。
  • Messaging 模块为 STOMP 提供了支持作为在应用程序中 WebSocket 子协议的使用。它也支持一 个注解编程模型,它是为了选路和处理来自 WebSocket 客户端的 STOMP 信息。
  • 测试模块支持对具有 JUnit TestNG 框架的 Spring 组件的测试。

2Spring核心之IoC控制反转

2.1 IoC的概念

Ioc—Inversion of Control ,即 控制反转 ,不是什么技术,而是一种设计思想。
IoC 是指在程序开发中,实例的创建不再由调用者管理,而是由 Spring 容器创建。 Spring 容器会负责控 制程序之间的关系,而不是由程序代码直接控制,因此,控制权由程序代码转移到了 Spring 容器中,控制权发生了反转,这就是 Spring IoC 思想。

2.2 Spring入门案例

2.2.1 创建maven项目

2.2.2 pom.xml文件添加依赖和插件

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.3.5</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.13</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

2.2.3 创建一个实体类

package com.lyl.pojo;

public class Team {
    private Integer id;
    private String name;
    private String location;

    public Team() {
        System.out.println(id+name+location);
    }
    public void init(){ System.out.println("Team ---- init()"); }
    public void destroy(){ System.out.println("Team ---- destroy()"); }

    public Team(Integer id, String name, String location) {
        this.id = id;
        this.name = name;
        this.location = location;
    }

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

2.3.4 创建Spring的配置文件application.xml

2.3.5 使用Spring容器创建对象?

<?xml version="1.0" encoding="UTF-8"?>

<!--spring配置文件 beans:根标签 spring中Java的对象成为java beanspring-beans.xsd是一个约束文件 约束xml文件中都能编写哪些标签 -->

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

<!--创建对象:声明bean,告知spring容器创建哪些对象一个bean标签表示一个对象 id=“对象名”,要求唯一之class="完全限定名" spring底层是通过反射方式创建对象,不能写接口相当于
com.lyl.pojo.Team team1=new com.lyl.pojo.Team();然后将创建的对象放入spring容器的一个集合Map中 springMap.put(id,对象)例如springMap.put(“team1",new Team());
scope="singleton/prototype"
    singleton:单例,默认值,容器启动完毕之后单例对象就被创建了,而且容器中只有唯一的一个对象 
    prototype:多例,多例的对象是什么时候使用什么时候创建,每次获取的时候都创建新对象 
lazy-init="true/false" 针对单例对象 
    true: 获取对象的时候才创建对象 
    false: 立即创建对象,不管是否使用生命周期相关: 
init-method="对象创建完毕之后立即调用的初始化方法"
destroy-method="spring容器调用关闭方法的时候执行的方法" -->


<bean destroy-method="destroy" init-method="init" lazy-init="true" scope="singleton" class="com.kkb.pojo.Team" name="team1" id="team1"/>

<bean scope="prototype" class="com.kkb.pojo.Team" name="team2" id="team2"/>

<!--非自定义对象的创建-->


<bean class="java.util.Date" id="date1"/>

</beans>

2.3.6 获取Spring容器

Spring 提供了两种 IoC 容器,分别为 BeanFactory ApplicationContext

2.3.6.1 BeanFactory

BeanFactory 是基础类型的 IoC 容器 , 是一个管理 Bean 的工厂,它主要负责初始化各种 Bean ,并调用 它们的生命周期方法。
BeanFactory 接口有多个实现类,最常见的是
org.Springframework.beans.factory.xml.XmlBeanFactory ,它是根据 XML 配置文件中的定义装配
Bean 的。
BeanFactory beanFactory = new XmlBeanFactory(new FileSystemResource(Spring配置文件 的名称));

2.3.6.2 ApplicationContext

ApplicationContext BeanFactory 的子接口,也被称为 应用上下文 。它不仅提供了 BeanFactory 的 所有功能,还添加了对 i18n (国际化)、资源访问、事件传播等方面的良好支持。
ApplicationContext 接口有两个常用的实现类 :
  • ClassPathXmlApplicationContext——常用?
    //该类从类路径 ClassPath 中寻找指定的 XML 配置文件,找到并装载完成 ApplicationContext 的实例化工作
    ApplicationContext applicationContext=new ClassPathXmlApplicationContext(Spring配 置文件的名称);
  • FileSystemXmlApplicationContext
ApplicationContext applicationContext = new FileSystemXmlApplicationContext(String configLocation);
它与 ClassPathXmlApplicationContext 的区别是:在读取 Spring 的配置文件时,
FileSystemXmlApplicationContext 不再从类路径中读取配置文件,而是通过参数指定配置文件的位 置,它可以获取类路径之外的资源,如“D:\application.xml”

2.3.7 通过上下文对象获取容器中的对象

package com.kkb.test; 
import com.lyl.pojo.Team; 
import org.junit.Test; 
import org.springframework.beans.factory.BeanFactory; 
import org.springframework.beans.factory.xml.XmlBeanFactory; 
import org.springframework.context.ApplicationContext; 
import org.springframework.context.support.ClassPathXmlApplicationContext; 
import org.springframework.context.support.FileSystemXmlApplicationContext; 
import org.springframework.core.io.FileSystemResource; 
import java.util.Date; 
public class Test1 { 
    @Test public void test01(){ 
    //使用spring容器创建对象 
    //1、指定spring配置文件的名称 
        String springConfig="application.xml"; 
    //2、创建spring容器的对象: 
    //方式1:不推荐,了解 
        BeanFactory beanFactory = new       XmlBeanFactory(newFileSystemResource("D:/workspaces/ideaProjects/MySpring/spring01/src/main/resour ces/application.xml")); 
        beanFactory.getBean("team1");
    //根据ID从IOC容器获取对象 
    //方式2:applicationContext--常用 
        ApplicationContext applicationContext=newClassPathXmlApplicationContext(springConfig);
    //这里执行完毕容器中的对象都已经创建完成
    //方式3:applicationContext--了解 
        ApplicationContext applicationContext2 = newFileSystemXmlApplicationContext("D:/workspaces/ideaProjects/MySpring/spring01/sr c/main/resources/application.xml"); 
    //3、获取容器中的对象 
        Team team1= (Team) applicationContext.getBean("team1"); 
    //4、容器其他api 
        int beanDefinitionCount = applicationContext.getBeanDefinitionCount();                 
        System.out.println("spring容器中对象的个数:"+beanDefinitionCount); 
        String[] beanDefinitionNames = applicationContext.getBeanDefinitionNames();         
        System.out.println("spring容器中所有对象的名称:"); 
        for (String name : beanDefinitionNames) { 
            System.out.println(name); 
        } 
    }
}

2.3.8 创建非自定义对象

<bean id="date1" class="java.util.Date" scope="prototype"></bean>
//上面的测试方法中添加如下内容: 
//5、获取日期对象 
Date date1= (Date) applicationContext.getBean("date1"); 
System.out.println("日期:"+date1);

2.3.9 bean标签的属性

bean标签的属性
属性
说明
class
指定 bean 对应类的全路径
name
name bean 对应对象的一个标识
scope
执行 bean 对象创建模式和生命周期 ,scope="singleton" scope="prototype
id
id bean 对象的唯一标识 , 不能添加特别字符
lazy-init
是否延时加载 默认值 :false true 延迟加载对象 , 当对象被调用的时候才会加载,测试
的时候,通过 getbean() 方法获得对象。 lazy-init="false" 默认值,不延迟,无论对象
是否被使用,都会立即创建对象 , 测试时只需要加载配置文件即可。注意 : 测试的时候只
留下 id,class 属性
init-method
只需要加载配置文件即可对象初始化方法
destroy-method
hod 对象销毁方法
@Test 
public void test02(){ 
    String springConfig="application.xml"; 
    ClassPathXmlApplicationContext applicationContext=new         ClassPathXmlApplicationContext(springConfig); 
    Team team1 = (Team) applicationContext.getBean("team1"); 
    Team team11 = (Team) applicationContext.getBean("team1"); 
    System.out.println(team1); 
    System.out.println(team11); 
    Team team2 = (Team) applicationContext.getBean("team2"); T
    Team team22 = (Team) applicationContext.getBean("team2"); 
    System.out.println(team2); 
    System.out.println(team22); 
    applicationContext.close();
    //关闭容器 
}

2.3 Spring容器创建对象的方式

2.3.1 使用默认的构造方法

2.3.2 使用带参数的构造方法

2.3.3 使用工厂类

三种方式的案例如下:
Team.java 类中添加带参数构造方法:
public Team(Integer id, String name, String location) { 
    this.id = id; this.name = name; 
    this.location = location; 
    System.out.println("Team - 带参数的构造方法 id="+id+",name="+name+",location="+location); 
}
创建工厂类:
package com.kbb.pojo; 
public class MyFactory { 
    /*** 实例方法 * @return */ 
    public Team instanceFun(){ 
        System.out.println("MyFactory------instanceFun"); 
        return new Team(1003,"湖人","洛杉矶"); }
    /*** 静态方法 * @return */ 
    public static Team staticFun(){ 
        System.out.println("MyFactory------staticFun"); 
        return new Team(1004,"小牛","达拉斯"); 
}
    public static void main(String[] args) { 
        Team team1 = MyFactory.staticFun(); MyFactory factory=new MyFactory(); Team team = factory.instanceFun(); 
    } 
}
创建新的配置文件 createType.xml
<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans"                       
       mlns: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容器创建对象的方式: 
    1、通过默认构造方法
    2、通过带参数的构造方法 
    3、通过工厂方法:实例方法,静态方法
--> 
    <!--1、通过默认构造方法--> 
    <bean id="team1" class="com.kbb.pojo.Team"></bean> 
    <!-- 2、通过带参数的构造方法--> 
    <bean id="team2" class="com.kbb.pojo.Team"> 
        <!--name:表示参数的名称--> 
        <constructor-arg name="id" value="1001"/> 
        <constructor-arg name="name" value="勇士"/> 
        <constructor-arg name="location" value="金州"/> 
    </bean> 
    <bean id="team3" class="com.kbb.pojo.Team"> 
        <!--index:表示参数的下标索引--> 
        <constructor-arg index="0" value="1002"/> 
        <constructor-arg index="1" value="热火"/> 
        <constructor-arg index="2" value="迈阿密"/> 
    </bean> 
    <!--3、通过工厂方法: 
            3.1 静态方法 Team team1 = MyFactory.staticFun();--> 
    <bean id="staticTeam" class="com.kbb.pojo.MyFactory" factory- method="staticFun">       </bean> 
    <!--3、通过工厂方法: 
            3.2 实例方法 
            MyFactory factory=new MyFactory(); 
            Team team = factory.instanceFun();--> 
    <bean id="factory" class="com.kbb.pojo.MyFactory"></bean> 
    <bean id="instanceTeam" factory-bean="factory" factory-method="instanceFun"></bean> 
</beans>
测试类:
package com.lyl.test; 
import org.junit.Test; 
import org.springframework.context.ApplicationContext; 
import org.springframework.context.support.ClassPathXmlApplicationContext; 
public class CreateTypeTest { 
    @Test public void test01(){ 
        ApplicationContext ac=new ClassPathXmlApplicationContext("createType.xml"); 
    } 
}
测试结果:

2.4 基于XMLDI

DI—Dependency Injection ,即 依赖注入 :是组件之间依赖关系由容器在运行期决定,形象的说,即 由容器动态的将某个依赖关系注入到组件之中。依赖注入的目的并非为软件系统带来更多功能,而是为 了提升组件重用的频率,并为系统搭建一个灵活、可扩展的平台。通过依赖注入机制,我们只需要通过 简单的配置,而无需任何代码就可指定目标需要的资源,完成自身的业务逻辑,而不需要关心具体的资 源来自何处,由谁实现。 IoC 是一个概念,是一种思想,其实现方式多种多样。依赖注入就是其中用的比较多的一种方式。
Ioc DI 是同一个概念的不同角度描述 IoC 是一种思想,概念, DI 是实现它的手段。 Spring 框架使用依 赖注入实现IoC
Spring 容器是一个超级大工厂,负责创建、管理所有的 Java 对象,这些 Java 对象被称为 Bean
Spring 容器管理着容器中 Bean 之间的依赖关系, Spring 使用 依赖注入 的方式来管理 Bean 之间的依 赖关系。使用 IoC 实现对象之间的解耦和。

2.4.1 注入分类

bean 实例在调用无参构造器创建对象后,就要对 bean 对象的属性进行初始化。初始化是由容器自动完 成的,称为注入。
2.4.1.1 通过 set 方法
set 注入也叫设值注入是指,通过 setter 方法传入被调用者的实例。这种注入方式简单、直观,因而在 Spring 的依赖注入中大量使用。
2.4.1.2 通过构造方法
构造注入是指,在构造调用者实例的同时,完成被调用者的实例化。使用构造器设置依赖关系。
2.4.1.3. 自动注入
对于引用类型属性的注入,也可不在配置文件中显示的注入。可以通过为标签 设置 autowire 属性值,为引用类型属性进行隐式自动注入(默认是不自动注入引用类型属 性)。根据 自动注入判断标准的不同,可以分为两种:
1 byName
当配置文件中被调用者 bean id 值与代码中调用者 bean 类的属性名相同时,可使用 byName 方式, 让容器自动将被调用者 bean 注入给调用者 bean 。容器是通过调用者的 bean 类的属性名与配置文件的 被调用者 bean id 进行比较而实现自动注入的。
2 byType
使用 byType 方式自动注入,要求:配置文件中被调用者 bean class 属性指定的类,要与代码中调用 者 bean 类的某引用类型属性类型同源。即要么相同,要么有 is-a 关系(子类,或是实现类)。但这样 的同源的被调用 bean 只能有一个。多于一个,容器就不知该匹配哪一个了。
示例:
//创建TeamDao.java
package com.kkb.dao; 
public class TeamDao { 
    public void add(){ 
        System.out.println("TeamDao---- add----"); 
    } 
}
//创建TeamService.java
package com.kkb.service; 
import com.kkb.dao.TeamDao; 
public class TeamService { 
    private TeamDao teamDao;//=new TeamDao(); 
    public void add(){ 
        teamDao.add(); 
        System.out.println("TeamService----add----"); 
    }
    public TeamService() { }
    public TeamService(TeamDao teamDao) { 
        this.teamDao = teamDao; 
    }
    public TeamDao getTeamDao() { 
        return teamDao; 
    }
    public void setTeamDao(TeamDao teamDao) { 
    this.teamDao = teamDao; 
    } 
}
创建配置文件 DI.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="teamDao" class="com.lyl.dao.TeamDao"></bean> 
    <!-- <bean id="teamDao1" class="com.kkb.dao.TeamDao"></bean>-->
    <bean id="teamService" class="com.lyl.service.TeamService"> 
        <!--使用set方法注入属性值-->
        <property name="teamDao" ref="teamDao"></property>
    </bean>
    <bean id="teamService2" class="com.lyl.service.TeamService"> 
        <!--使用构造方法注入属性值-->
        <constructor-arg name="teamDao" ref="teamDao"></constructor-arg>
    </bean> 
    <!--按名称自动注入:查找容器中id名与属性名一致的对象进行注入-->
    <bean id="teamService3" class="com.kkb.service.TeamService" autowire="byName"></bean> 
    <!--按类型自动注入:查找容器中类型与属性类型相同或者符合is-a关系的对象进行注入,但是要求类 型相同的对象唯一,否则抛出异常:不知道用哪一个匹配-->
    <bean id="teamService4" class="com.kkb.service.TeamService" autowire="byType"></bean>
</beans>
创建测试类:
package com.lyl.test;

import com.lyl.dao.TeamDao;
import com.lyl.service.TeamService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Test02 {
    @Test
    public void test02() {
        ApplicationContext ac = new ClassPathXmlApplicationContext("DI.xml");
        TeamService teamService = (TeamService) ac.getBean("teamService");
        teamService.add();
        TeamService teamService2 = (TeamService) ac.getBean("teamService2");
        teamService2.add();
        TeamService teamService3 = (TeamService) ac.getBean("teamService3");
        teamService3.add();
        TeamService teamService4 = (TeamService) ac.getBean("teamService4");
        teamService4.add();
    }

    @Test
    public void test01() {
        TeamDao teamDao = new TeamDao();
        TeamService teamService = new TeamService();
        teamService.setTeamDao(teamDao);
        teamService.add();
    }
}

2.5、基于注解实现IoC--重要

对于 DI 使用注解,将不再需要在 Spring 配置文件中声明 bean 实例。 Spring 中使用注解,需要在原有 Spring 运行环境基础上再做一些改变。

2.5.1 声明Bean的注解 @Component

在类上添加注解 @Component 表示该类创建对象的权限交给 Spring 容器。注解的 value 属性用于指定 bean的 id 值, value 可以省略。
@Component 不指定 value 属性, bean id 是类名的首字母小写。

除此之外, Spring 中还提供了其他 3 个用于创建对象的注解:
@Repository : 用于 dao 实现类的的注解
@Service: 用户 service 实现类的注解
@Controller: 用于 controller 实现类的注解
这三个注解与 @Component 都可以创建对象,但这三个注解还有其他的含义, @Service 创建业务层对 象,业务层对象可以加入事务功能,@Controller 注解创建的对象可以作为处理器接收用户的请求。 @Repository, @Service @Controller 是对 @Component 注解的细化,标注不同层的对象。即持久 层对象,业务层对象,控制层对象。

?

?

2.5.2 包扫描

需要在 Spring 配置文件中配置组件扫描器,用于在指定的基本包中扫描注解。 如果没有报扫描,添加的 创建对象的注解不生效
如果要扫描的包有多个,可以有以下方式扫描:
1 、使用多个 context:component-scan 指定不同的包路径

2 、指定 base-package 的值使用分隔符
分隔符可以使用逗号(,)分号(;)还可以使用空格,不建议使用空格。
<!--多个包的扫描: 方式2 : base-package中直接声明要扫描的多个包 ,多个值用逗号,分号或者空格 分割,但是空格不推荐--> 
<context:component-scan base- package="com.lyl.dao,com.lyl.service,com.lyl.controller"></context:component- scan>
3 base-package 是指定到父包名
base-package 的值表是基本包,容器启动会扫描包及其子包中的注解,当然也会扫描到子包下级的子 包。所以 base-package 可以指定一个父包就可以。 但不建议使用顶级的父包,扫描的路径比较多,导致容器启动时间变慢。指定到目标包和合适的。也就 是注解所在包全路径。
<!--多个包的扫描: 方式3: base-package中直接声明要扫描的多个包的父包--> 
<context:component-scan base-package="com.lyl"></context:component-scan>

2.5.3 属性注入@Vaule

需要在属性上使用注解 @Value ,该注解的 value 属性用于指定要注入的值。使用该注解完成属性注入时,类中无需 setter 。当然,若属性有 setter ,则也可将其加到 setter 上。

2.5.4 byType自动注入@Autowired

需要在引用属性上使用注解 @Autowired ,该注解默认使用按类型自动装配 Bean 的方式。使用该注解完
成属性注入时,类中无需 setter 。当然,若属性有 setter ,则也可将其加到 setter 上。

2.5.5 byName自动注入@Autowired@Qualifier

需要在引用属性上联合使用注解 @Autowired @Qualifier @Qualifier value 属性用于指定要匹配 的 Bean id 值。类中无需 set 方法,也可加到 set 方法上。
@Autowired 还有一个属性 required ,默认值为 true ,表示当匹配失败后,会终止程序运行。若将其值 设置为 false ,则匹配失败,将被忽略,未匹配的属性值为 null

2.5.6 自动注入@Resource

Spring 提供了对 jdk @Resource 注解 的支持。 @Resource 注解既可以按名称匹配 Bean ,也可以按类 型匹配 Bean 默认是按名称注入 。使用该注解,要求 JDK 必须是 6 及以上版本。 @Resource 可在属性 上,也可在 set 方法上。
1 byType 注入引用类型属性
@Resource 注解若不带任何参数,采用默认按名称的方式注入,按名称不能注入 bean ,则会按照类型 进行 Bean 的匹配注入。
2 byName 注入引用类型属性
@Resource 注解指定其 name 属性,则 name 的值即为按照名称进行匹配的 Bean id

?3?Spring核心之AOP

3.1?什么是AOP

AOP Aspect Oriented Programming 的缩写,意思为 面向切面编程 ,是通过预编译方式和运行期动态 代理实现程序功能的统一维护的一种技术。
AOP 的作用:不修改源码的情况下,程序运行期间对方法进行功能增强
好处:
1 、减少代码的重复,提高开发效率,便于维护。
2 、专注核心业务的开发。
核心业务和服务性代码混合在一起
开发中:各自做自己擅长的事情,运行的时候将服务性代码织入到核心业务中。
通过 spring 工厂自动实现将服务性代码以切面的方式加入到核心业务代码中。

3.2 AOP的实现机制-动态代理

3.2.1 什么是代理模式

代理:自己不做,找人帮你做。
代理模式:在一个原有功能的基础上添加新的功能。
分类:静态代理和动态代理。

3.3静态代理

3.3.1 原有方式:核心业务和服务方法都编写在一起

package com.lyl.service;

public class TeamService {
    public void add() {
        try {
            System.out.println("开始事务");
            System.out.println("TeamService---- add----");// 核心业务 
            System.out.println("提交事务");
        } catch (Exception e) {
            e.printStackTrace();
            System.out.println("回滚事务");
        }
    }
}

4.3.2 基于类的静态代理

将服务性代码分离出来,核心业务 -- 保存业务中只有保存功能
package com.kkb.service; 
public class TeamService { 
    public void add(){ 
        System.out.println("TeamService---- add----");// 核心业务 
    } 
}
public static void main(String[] args) { 
    TeamService ser=new ProxyTeamService(); 
    ser.add(); 
}
package com.lyl.staticproxy;import com.kkb.service.TeamService;

/*** 基于类的静态代理: * 要求继承被代理的类 * 弊端:每次只能代理一个类 */
public class ProxyTeamService extends TeamService {
    public void add() {
        try {
            System.out.println("开始事务");
            super.add();//核心业务就是由被代理对象完成 ;其他服务功能由代理类完成
            System.out.println("提交事务");
        } catch (Exception e) {
            System.out.println("回滚事务");
        }
    }
}
弊端:代理类只能代理一个类

3.3.3 基于接口的静态代理

为核心业务(保存 add )创建一个接口 , 通过接口暴露被代理的方法
要求:代理类和被代理类都实现了同一个接口
package com.lyl.service;
/**
* 接口定义核心方法
*/
public interface IService {
    void add();
}


package com.lyl.service;
public class TeamService implements IService{
    @Override
    public void add(){
        System.out.println("TeamService---- add----");// 核心业务
    }
}


package com.lyl.service;
public class UserService implements IService{
    @Override
    public void add() {
    System.out.println("UserService---- add-----");
    }
}
package com.kkb.staticproxy;
        import com.kkb.service.IService;
/**
 * 基于接口的静态代理:
 * 代理类和被代理类实现同一个接口
 */
public class ProxyTranService implements IService {
    private IService service;//被代理的对象
    public ProxyTranService(IService service) {
        this.service = service;
    }
    @Override
    public void add() {
        try {
            System.out.println("开始事务");
            service.add();//核心业务就是由被代理对象完成 ;其他服务功能由代理类完成
            System.out.println("提交事务");
        }catch (Exception e){
            System.out.println("回滚事务");
        }
    }
}

package com.kkb.staticproxy;
import com.kkb.service.IService;
public class ProxyLogService implements IService {
    private IService service;//被代理对象
    public ProxyLogService(IService service) {
        this.service = service;
    }
    @Override
    public void add() {
        try {
            System.out.println("开始日志");
            service.add();//核心业务就是由被代理对象完成 ;其他服务功能由代理类完成
            System.out.println("结束日志");
        }catch (Exception e){
            System.out.println("异常日志");
        }
    }
}
测试类:
public static void main(String[] args) {
    TeamService teamService=new TeamService();//被代理对象
    UserService userService=new UserService();//被代理对象
    ProxyTranService tranService=new ProxyTranService(userService);//事务代理对象--一级代理
    //tranService.add();//代理对象干活
    ProxyLogService logService=new ProxyLogService(tranService);//日志的代理对象--二级代理
    logService.add();
}

3.3.4 提取出切面代码,作为AOP接口

共有 4 个位置可以将切面代码编织进入核心业务代码中。
package com.lyl.aop;
/**
 * 切面:服务代码,切入到核心代码中,切入到哪里,给了四个位置
 */
public interface AOP {
    void before();
    void after();
    void exception();
    void myFinally();
}
package com.lyl.aop;
public class TranAOP implements AOP {
    @Override
    public void before() {
        System.out.println("事务----before");
    }
    @Override
    public void after() {
        System.out.println("事务----after");
    }
    @Override
    public void exception() {
        System.out.println("事务----exception");
    }
    @Override
    public void myFinally() {
        System.out.println("事务----myFinally");
    }
}
package com.lyl.aop;
public class LogAop implements AOP{
    @Override
    public void before() {
        System.out.println("日志----before");
    }
    @Override
    public void after() {
        System.out.println("日志----after");
    }
    @Override
    public void exception() {
        System.out.println("日志----exception");
    }
    @Override
    public void myFinally() {
        System.out.println("日志----myFinally");
    }
}

package com.kkb.staticproxy;
import com.kkb.aop.AOP;
import com.kkb.service.IService;
public class ProxyAOPService implements IService {
    private IService service;//被代理对象
    private AOP aop;//要加入切面
    public ProxyAOPService(IService service, AOP aop) {
        this.service = service;
        this.aop = aop;
    }
    @Override
    public void add() {
        try {
            aop.before();
            service.add();//被代理对象干活
            aop.after();
        }catch (Exception e){
            aop.exception();
        }finally {
            aop.myFinally();
        }
    }
}
    @Testpublic
    void test02() {
        IService teamService = new TeamService();//被代理对象--核心内容 
        AOP logAop = new LogAop();//切面-服务内容 
        AOP tranAop = new TranAOP();
        IService service = new ProxyAOPService(teamService, logAop); //代理对象--一级 代理 
        IService service2 = new ProxyAOPService(service, tranAop);//代理对象--二级代理 
        service2.add();
    }
总结静态代理:
1 )可以做到在不修改目标对象的功能前提下,对目标对象功能扩展。
2 )缺点: 因为代理对象,需要与目标对象实现一样的接口。所以会有很多代理类,类太多。
一旦接口增加方法,目标对象与代理对象都要维护。

3.4 动态代理

静态代理:要求代理类一定存在,
动态代理:程序运行的时候,根据要被代理的对象动态生成代理类。
类型: 基于 JDK 的动态代理? ? ? ?基于CGLIB 的动态代理

3.4.1 基于JDK的动态代理

?3.4.1.1 直接编写测试类

/*newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandlerh)
ClassLoader :类加载器,因为动态代理类,借助别人的类加载器。一般使用被代理对象的类加载器。
Class<?>[] interfaces:接口类对象的集合,针对接口的代理,针对哪个接口做代理,一般使用的就是被
代理对象的接口。
InvocationHandler:句柄,回调函数,编写代理的规则代码
public Object invoke(Object arg0, Method arg1, Object[] arg2)
Object arg0:代理对象
Method arg1:被代理的方法
Object[] arg2:被代理方法被执行的时候的参数的数组
*/
package com.lyl.dynamicproxy;
import com.lyl.service.IService;
import com.lyl.service.TeamService;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
public class MyJDKProxy {
    public static void main(String[] args) {
//目标对象--被代理对象
        TeamService teamService=new TeamService();
//返回代理对象 调用JDK中Proxy类中的静态方法newProxyInstance获取动态代理类的实例
        IService proxyService= (IService) Proxy.newProxyInstance(
                teamService.getClass().getClassLoader(),
                teamService.getClass().getInterfaces(),
                new InvocationHandler() {//回调函数 编写代理规则
                    @Override
                    public Object invoke(Object proxy, Method method, Object[]
                            args) throws Throwable {
                        try {
                            System.out.println("开始事务");
                            Object invoke = method.invoke(teamService, args);//核
                            心业务
                            System.out.println("提交事务");
                            return invoke;
                        }catch (Exception e){
                            System.out.println("回滚事务");
                            e.printStackTrace();
                            throw e;
                        }finally {
                            System.out.println("finally---------");
                        }
                    }
                }
        );
//代理对象干活
        proxyService.add();
        System.out.println(teamService.getClass());
        System.out.println(proxyService.getClass()+"--------");
    }
}
4.4.1.2 结构化设计
方式 1
package com.kkb.dynamicproxy;
import com.kkb.aop.AOP;
import com.kkb.service.IService;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
public class ProxyHandler implements InvocationHandler {
    private IService service;//目标对象
    private AOP aop;//切面
    public ProxyHandler(IService service, AOP aop) {
        this.service = service;
        this.aop = aop;
    }
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws
            Throwable {
        try {
            aop.before();
            Object invoke = method.invoke(service, args);//核心业务
            aop.after();
            return invoke;
        }catch (Exception e){
            aop.exception();
            e.printStackTrace();
            throw e;
        }finally {
            aop.myFinally();
        }
    }
}




    public static void main2(String[] args) {
//目标对象--被代理对象
        TeamService teamService=new TeamService();
//切面
        AOP tranAop=new TranAOP();
//返回代理对象 基于JDK的动态代理
        IService proxyService= (IService) Proxy.newProxyInstance(
                teamService.getClass().getClassLoader(),
                teamService.getClass().getInterfaces(),
                new ProxyHandler(teamService,tranAop)
        );
//代理对象干活
        proxyService.add();
        System.out.println(teamService.getClass());
        System.out.println(proxyService.getClass()+"------");
    }
package com.kkb.dynamicproxy;
import com.lyl.aop.AOP;
import com.lyl.service.IService;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
public class ProxyFactory {
    private IService service;//目标对象
    private AOP aop;//切面
    public ProxyFactory(IService service, AOP aop) {
        this.service = service;
        this.aop = aop;
    }
    /**
     * 获取动态代理的示例
     * @return
     */
    public Object getProxyInstance() {
        return Proxy.newProxyInstance(
                service.getClass().getClassLoader(),
                service.getClass().getInterfaces(),
                new InvocationHandler() {//回调函数 编写代理规则
                    @Override
                    public Object invoke(Object proxy, Method method, Object[]
                            args) throws Throwable {
                        try {
                            aop.before();
                            Object invoke = method.invoke(service, args);//核心业
                            务
                            aop.after();
                            return invoke;
                        }catch (Exception e){
                            aop.exception();
                            e.printStackTrace();
                            throw e;
                        }finally {
                            aop.myFinally();
                        }
                    }
                }
        );
    }
}


    public static void main(String[] args) {
//目标对象--被代理对象
        TeamService teamService=new TeamService();
//切面
        AOP tranAop=new TranAOP();
        AOP logAop=new LogAop();
//获取代理对象
        IService service= (IService) new
                ProxyFactory(teamService,tranAop).getProxyInstance();
        IService service1= (IService) new
                ProxyFactory(service,logAop).getProxyInstance();
        service1.add();//核心业务+服务代码混合在一起的完整的业务方法
    }

4.4.2 基于CGLIB的动态代理

Cglib 代理,也叫做子类代理。在内存中构建一个子类对象从而实现对目标对象功能的扩展。
  • JDK的动态代理有一个限制,就是使用动态代理的对象必须实现一个或多个接口。如果想代理没有实现接口的类,就可以使用CGLIB实现。
  • CGLIB是一个强大的高性能的代码生成包,它可以在运行期扩展Java类与实现Java接口。它广泛的被许多AOP的框架使用,例如Spring AOPdynaop,为他们提供方法的interception
  • CGLIB包的底层是通过使用一个小而快的字节码处理框架ASM,来转换字节码并生成新的类。不鼓励直接使用ASM,因为它要求你必须对JVM内部结构包括class文件的格式和指令集都很熟悉。
4.4.2.1 直接编写测试类
package com.lyl.cglibproxy;
public class NBAService {
    public int add(String name,int id){
        System.out.println("NBAService---- add----");
        return id;
    }
}
    public static void main(String[] args) {
//目标对象:没有接口
        NBAService nbaService=new NBAService();
//创建代理对象:选择cglib动态代理
        NBAService proxyService= (NBAService)
                Enhancer.create(nbaService.getClass(),
                        new MethodInterceptor() {//回调函数编写代理规则
                            @Override
                            public Object intercept(Object o, Method method, Object[] objects,
                                                    MethodProxy methodProxy) throws Throwable {
                                try {
                                    System.out.println("开始事务");
                                    Object invoke = methodProxy.invokeSuper(o, objects);//核心
                                    System.out.println("提交事务");
                                    return invoke;
                                }catch (Exception e){
                                    System.out.println("事务回滚");
                                    throw e;
                                }finally {
                                    System.out.println("finally------------");
                                }
                            }
                        });
//代理对象干活
        int res=proxyService.add("huren",1001);
        System.out.println(res);
    }

3.5 SpringAOP

3.5.1 Spring AOP 相关概念
Spring AOP 实现底层就是对上面的动态代理的代码进行了封装,封装后我们只需要对需要关注的部分 进行代码编写,并通过配置的方式完成指定目标的方法增强。 我们先来介绍AOP 的相关术语:
Target( 目标对象 ) 要被增强的对象,一般是业务逻辑类的对象。
Proxy (代理) 一个类被 AOP 织入增强后,就产生一个结果代理类。
Aspect( 切面 ) 表示增强的功能,就是一些代码完成的某个功能,非业务功能。是切入点和通知的结合。
Joinpoint( 连接点 ) 所谓连接点是指那些被拦截到的点。在Spring , 这些点指的是方法(一般是类中的业务方法) , 因为 Spring只支持方法类型的连接点。
Pointcut( 切入点 ) 切入点指声明的一个或多个连接点的集合。通过切入点指定一组方法。 被标记为 final 的方法是不能作为连接点与切入点的。因为最终的是不能被修改的,不能被增强的。
Advice( 通知 / 增强 ) 所谓通知是指拦截到 Joinpoint 之后所要做的事情就是通知。通知定义了增强代码切入到目标代码的时 间点,是目标方法执行之前执行,还是之后执行等。通知类型不同,切入时间不同。 通知的类型:前置通知, 后置通知 , 异常通知 , 最终通知 , 环绕通知。 切入点定义切入的位置,通知定义切入的时间。
Weaving( 织入 ). 是指把增强应用到目标对象来创建新的代理对象的过程。 spring 采用动态代理织入,而 AspectJ 采用编 译期织入和类装载期织入。
切面的三个关键因素:
1 、切面的功能 -- 切面能干啥
2 、切面的执行位置 -- 使用 Pointcut 表示切面执行的位置
3 、切面的执行时间 -- 使用 Advice 表示时间,在目标方法之前还是之后执行。

3.5.2 AspectJ AOP 的实现

对于 AOP 这种编程思想,很多框架都进行了实现。 Spring 就是其中之一,可以完成面向切面编程。AspectJ 也实现了 AOP 的功能,且其实现方式更为简捷而且还支持注解式开发。所以, Spring 又将 AspectJ 的对于 AOP 的实现也引入到了自己的框架中。
Spring 中使用 AOP 开发时,一般使用 AspectJ 的实现方式
AspectJ 是一个优秀面向切面的框架,它扩展了 Java 语言,提供了强大的切面实现。
3.5.2 .1 AspectJ 的通知类型
AspectJ 中常用的通知有 5 种类型:
1. 前置通知
2. 后置通知
3. 环绕通知
4. 异常通知
5. 最终通知
3.5.2.2 AspectJ 的切入点表达式
AspectJ 定义了专门的表达式用于指定切入点。
表达式的原型如下: ????????
execution(modifiers-pattern? ret-type-pattern declaring-type-pattern?name-pattern(param-pattern) throws-pattern?)
说明:
????????modifiers-pattern] 访问权限类型
????????ret-type-pattern 返回值类型
????????declaring-type-pattern 包名类名
????????name-pattern(param-pattern) 方法名 ( 参数类型和参数个数 )
????????throws-pattern 抛出异常类型
?????????表示可选的部分
以上表达式共 4 个部分。
execution( 访问权限 方法返回值? ? 方法声明 ( 参数 ) 异常类型 )
切入点表达式要匹配的对象就是目标方法的方法名。所以, execution 表达式中就是方法的签名。
PS: 表达式中黑色文字表示可省略部分,各部分间用空格分开。在其中可以使用以下符号:
符号意义
*
0- 多个任意字符
..
用在方法参数中,表示任意个参数;用在包名后,表示当前及其子包路径
+
用在类名后,表示当前及其子类;用在接口后,表示当前接口及其实现类
示例:
execution(* com.kkb.service.*.*(..))
指定切入点为:定义在 service 包里的任意类的任意方法。
execution(* com.kkb.service..*.*(..))
指定切入点为:定义在 service 包或者子包里的任意类的任意方法。 “..” 出现在类名中时,后面必须跟 “*”,表示包、子包下的所有类。
execution(* com.kkb.service.IUserService+.*(..))
指定切入点为: IUserService 若为接口,则为接口中的任意方法及其所有实现类中的任意方法;若为类, 则为该类及其子类中的任意方法。
<dependencies>
    <!--spring 核心依赖-->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.2.13.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aspects</artifactId>
        <version>5.2.13.RELEASE</version>
    </dependency>
    <!--测试依赖-->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
<plugins>
    <!--编译插件-->
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.0</version>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
        </configuration>
    </plugin>
</plugins>
</build>
2 .创建 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"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring- beans.xsd 
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop.xsd 
       http://www.springframework.org/schema/context 
       http://www.springframework.org/schema/context/spring-context.xsd"> 
    <!--在beans标签中 引入AOP和context约束--> 
</beans>
3 .创建核心业务类
public interface IService {
    void add(int id,String name);
    boolean update(int num);
}
package com.kkb.service;
import org.springframework.stereotype.Service;
/**
 * 核心业务类
 */
@Service
public class TeamService implements IService{
    @Override
    public void add(int id, String name) {
        System.out.println("TeamService---- add----");
    }
    @Override
    public boolean update(int num) {
        System.out.println("TeamService---- update----");
//int res=10/0;
        if(num>666){
            return true;
        }
        return false;
    }
}
package com.kkb.service;
import org.springframework.stereotype.Service;
/**
 * 核心业务类
 */
@Service("nbaService")
public class NBAService implements IService{
    @Override
    public void add(int id, String name) {
        System.out.println("NBAService---- add----");
    }
    @Override
    public boolean update(int num) {
        System.out.println("NBAService---- update----");
//int res=10/0;
        if(num>666){
            return true;
        }
        return false;
    }
}

4.定义切面类

package com.lyl.aop;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;
/**
 * 切面类
 */
//@Component 切面对象的创建权限依然交给spring容器
//@Aspect  aspectj 框架的注解 标识当前类是一个切面类
public class MyAspect{
    /**
     * 当较多的通知增强方法使用相同的 execution 切入点表达式时,编写、维护均较为麻烦。
     * AspectJ 提供了@Pointcut 注解,用于定义 execution 切入点表达式。
     * 其用法是,将@Pointcut 注解在一个方法之上,以后所有的 execution 的 value 属性值均
     * 可使用该方法名作为切入点。代表的就是@Pointcut 定义的切入点。
     * 这个使用@Pointcut 注解方法一般使用 private 的标识方法,即没有实际作用的方法。
     */
    @Pointcut("execution(* com.kkb.service..*.*(..))")
    private void pointCut(){
    }
    @Pointcut("execution(* com.kkb.service..*.add*(..))")
    private void pointCut2(){
    }
    /**
     * 声明前置通知
     * @param jp
     */
    @Before("pointCut()")
    public void before(JoinPoint jp){
        System.out.println("前置通知:在目标方法执行之前被调用的通知");
        String name = jp.getSignature().getName();
        System.out.println("拦截的方法名称:"+name);
        Object[] args = jp.getArgs();
        System.out.println("方法的参数格式:"+args.length);
        System.out.println("方法参数列表:");
        for (Object arg : args) {
            System.out.println("\t"+arg);
        }
    }
    /**
     * AfterReturning 注解声明后置通知
     * value: 表示切入点表达式
     * returning 属性表示 返回的结果,如果需要的话可以在后置通知的方法中修改结果
     */
    @AfterReturning(value = "pointCut2()",returning = "result")
    public Object afterReturn(Object result){
        if(result!=null){
            boolean res=(boolean)result;
            if(res){
                result=false;
            }
        }
        System.out.println("后置通知:在目标方法执行之后被调用的通知,result="+result);
        return result;
    }
    /**
     * Around 注解声明环绕通知
     * ProceedingJoinPoint 中的proceed方法表示目标方法被执行
     */
    @Around(value = "pointCut()")
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕方法---目标方法的执行之前");
        Object proceed = pjp.proceed();
        System.out.println("环绕方法---目标方法的执行之后");
        return proceed;
    }
    /**
     * AfterThrowing 注解声明异常通知方法
     * value: 表示切入点表达式
     * returning 属性表示 返回的结果,如果需要的话可以在后置通知的方法中修改结果
     */
    @AfterThrowing(value = "pointCut()",throwing = "ex")
    public void exception(JoinPoint jp,Throwable ex){
//一般会把异常发生的时间、位置、原有都记录下来
        System.out.println("异常通知:在目标方法执行出现异常的时候才会别调用的通知,否则不
                执行");
                System.out.println(jp.getSignature()+"方法出现异常,异常信息
                        是:"+ex.getMessage());
    }
    /**
     * After 注解声明为最终通知
     */
    @After( "pointCut()")
    public void myFinally(){
        System.out.println("最终通知:无论是否出现异常都是最后被调用的通知");
    }
}

5 .业务类和切面类添加注解

?

在定义好切面 Aspect 后,需要通知 Spring 容器,让容器生成 目标类 + 切面 的代理对象。这个代理是由容器自动生成的。只需要在 Spring 配置文件中注册一个基于 aspectj 的自动代理生成器,其就会自动扫描到@Aspect 注解,并按通知类型与切入点,将其织入,并生成代理。
6. spring.xml 配置文件中开启包扫描和 注册 aspectj 的自动代理
<!--包扫描--> 
<context:component-scan base-package="com.kkb.service,com.kkb.aop"/> 
<!--开启注解AOP的使用--> 
<aop:aspectj-autoproxy proxy-target-class="true"/> 
<!--aop:aspectj-autoproxy的底层是由 AnnotationAwareAspectJAutoProxyCreator 实现的, 
是基于 AspectJ 的注解适配自动代理生成器。 
其工作原理是,aop:aspectj-autoproxy通过扫描找到@Aspect 定义的切面类,再由切面类根据切入点找 到目标类的目标方法,再由通知类型找到切入的时间点。-->
7. 测试类:
package com.kkb.test;
import com.lyl.service.NBAService;
import com.lyl.service.TeamService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Test01 {
    @Test
    public void test01(){
        ApplicationContext ac=new ClassPathXmlApplicationContext("spring.xml");
        TeamService teamService = (TeamService) ac.getBean("teamService");
        teamService.add(1001,"湖人队");
        System.out.println("--------------------------");
        boolean update = teamService.up
        System.out.println("update 结果="+update);
        System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
        NBAService nbaService = (NBAService) ac.getBean("nbaService");
        nbaService.add(1002,"热火");
        System.out.println("--------------------------");
        boolean update2 = teamService.update(888);
        System.out.println("update 结果="+update2);
    }
}
4.5.4 XML 方式实现 AOP
<aop:config>
<!--声明切入点的表达式,可以声明多个-->
<aop:pointcut id="pt1" expression="execution(* com.kkb.service..*.add*
        (..))"/>
<aop:pointcut id="pt2" expression="execution(*
        com.kkb.service..*.update*(..))"/>
<aop:pointcut id="pt3" expression="execution(* com.kkb.service..*.del*
        (..))"/>
<aop:pointcut id="pt4" expression="execution(*
        com.kkb.service..*.insert*(..))"/>
<aop:aspect ref="myAOP">
<aop:before method="before" pointcut="execution(*
        com.kkb.service..*.*(..))"></aop:before>
<aop:after-returning method="afterReturn" pointcut-ref="pt2"
        returning="result"></aop:after-returning>
<aop:after-throwing method="exception" pointcut-ref="pt1"
        throwing="ex"></aop:after-throwing>
<aop:after method="myFinally" pointcut-ref="pt1"></aop:after>
<aop:around method="around" pointcut-ref="pt2"></aop:around>
</aop:aspect>

package com.lyl.aop;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;
/**
 * 切面类
 */
@Component //切面对象的创建权限依然交给spring容器
@Aspect //aspectj 框架的注解 标识当前类是一个切面类
public class MyAOP {
    public void before(JoinPoint jp){
        System.out.println("AOP前置通知:在目标方法执行之前被调用的通知");
    }
    public void afterReturn(Object result){
        System.out.println("AOP后置通知:在目标方法执行之后被调用的通
                知,result="+result);
    }
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("AOP环绕方法---目标方法的执行之前");
        Object proceed = pjp.proceed();
        System.out.println("AOP环绕方法---目标方法的执行之后");
        return proceed;
    }
    public void exception(JoinPoint jp,Throwable ex){
//一般会把异常发生的时间、位置、原有都记录下来
        System.out.println("AOP异常通知:在目标方法执行出现异常的时候才会别调用的通知,否则
                不执行");
                System.out.println(jp.getSignature()+"方法出现异常,异常信息
                        是:"+ex.getMessage());
    }
    public void myFinally(){
        System.out.println("AOP最终通知:无论是否出现异常都是最后被调用的通知");
    }
}

5Spring整合JDBC

5.1 使用spring-jdbc操作数据库

主要内容 : 学习使用 JdbcTemplate API 和 如何使用 Spring 管理 JdbcTemplate
1 、创建项目引入依赖
<dependencies>
    <!--spring 核心依赖-->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.2.13.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>5.2.13.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.23</version>
    </dependency>
    <dependency>
        <groupId>com.mchange</groupId>
        <artifactId>c3p0</artifactId>
        <version>0.9.5.2</version>
    </dependency>
    <!--测试依赖-->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
<plugins>
    <!--编译插件-->
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.0</version>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
        </configuration>
    </plugin>
</plugins>
</build>
2 、测试连接

package com.lyl.test;

import com.mchange.v2.c3p0.ComboPooledDataSource;
import org.junit.Test;
import org.springframework.jdbc.core.JdbcTemplate;

import java.beans.PropertyVetoException;

public class Test01 {
    @Test
    public void test01() throws PropertyVetoException {
        //创建数据源
        ComboPooledDataSource dataSource = new ComboPooledDataSource();
        dataSource.setDriverClass("com.mysql.cj.jdbc.Driver");
        dataSource.setJdbcUrl("jdbc:mysql://192.168.58.128:3306/springJDBC? serverTimezone=UTC&characterEncoding=utf8&useUnicode=true&useSSL=false");
        dataSource.setUser("root");
        dataSource.setPassword("root"); //使用JDBCTemplete 
        JdbcTemplate template = new JdbcTemplate(dataSource);
        String sql = "insert into team(tname,location) value (?,?)";
        int update = template.update(sql, "勇士", "金州");
        System.out.println("插入数据的结果:" + update);
    }
}

5.2. Spring管理JdbcTemplate

spring 整合 jdbc 的时候我们都是直接让我的 dao 继承 Spring 提供的 JdbcDaoSupport 类,该类中提供了JdbcTemplate模板可用。
示例 :
package com.kkb.dao;

import com.lyl.pojo.Team;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.core.support.JdbcDaoSupport;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;

public class TeamDao extends JdbcDaoSupport {
    public int getCount() {
        String sql = "select count(tid) from team";
        return this.getJdbcTemplate().queryForObject(sql, Integer.class);
    }

    public Map<String, Object> getMany() {
        String sql = "select max(tid),min(tid) from team";
        return this.getJdbcTemplate().queryForMap(sql);
    }

    /**
     * 自己封装一个处理结果的方法
     *
     * @param resultSet
     * @return
     * @throws SQLException
     */
    public Team handlResult(ResultSet resultSet) throws SQLException {
        Team team = new Team();
        team.setId(resultSet.getInt("tid"));
        team.setName(resultSet.getString("tname"));
        team.setLocation(resultSet.getString("location"));
        return team;
    }

    public List<Team> findAll() {
        String sql = "select * from team";
        return this.getJdbcTemplate().query(sql, new RowMapper<Team>() {
            @Override
            public Team mapRow(ResultSet resultSet, int i) throws SQLException {
/* Team team=new Team();
team.setId(resultSet.getInt("tid"));
team.setName(resultSet.getString("tname"));
team.setLocation(resultSet.getString("location"));*/
                return handlResult(resultSet);
            }
        });
    }

    public Team findById(int id) {
        String sql = "select * from team where tid=?";
        return this.getJdbcTemplate().queryForObject(sql, new Object[]{id}, new
                RowMapper<Team>() {
                    @Override
                    public Team mapRow(ResultSet resultSet, int i) throws SQLException {
/* Team team=new Team();
team.setId(resultSet.getInt("tid"));
team.setName(resultSet.getString("tname"));
team.setLocation(resultSet.getString("location"));*/
                        return handlResult(resultSet);
                    }
                });
    }

    public int insert(Team team) {
//使用JDBCTemplete
// JdbcTemplate template=new JdbcTemplate(dataSource);
        String sql = "insert into team(tname,location) value (?,?)";
        return
                this.getJdbcTemplate().update(sql, team.getName(), team.getLocation());
    }

    public int update(Team team) {
//使用JDBCTemplete
// JdbcTemplate template=new JdbcTemplate(dataSource);
        String sql = "update team set tname=? ,location=? where tid=?";
        return
                this.getJdbcTemplate().update(sql, team.getName(), team.getLocation(), team.getId(
                ));
    }

    public int del(int id) {
//使用JDBCTemplete
// JdbcTemplate template=new JdbcTemplate(dataSource);
        String sql = "delete from team where tid=?";
        return this.getJdbcTemplate().update(sql, id);
    }
}
spring 的配置文件 application.xml 中需要创建数据源和给 TeamDao 中的 jdbcTemplate 赋值
?
<?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="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.cj.jdbc.Driver">
        </property>
        <property name="jdbcUrl"
                  value="jdbc:mysql://192.168.58.128:3306/springJDBC?
serverTimezone=UTC&characterEncoding=utf8&useUnicode=true&useSSL=fal
se"></property>
        <property name="user" value="root"></property>
        <property name="password" value="root"></property>
    </bean>
    <!--创建JdbcTemplate-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <!--需要注入数据源-->
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    <bean id="teamDao" class="com.kkb.dao.TeamDao">
        <!--需要JdbcTemplate-->
        <property name="jdbcTemplate" ref="jdbcTemplate"></property>
    </bean>
</beans>

测试:

package com.lyl.test;

import com.lyl.dao.TeamDao;
import com.lyl.pojo.Team;
import com.mchange.v2.c3p0.ComboPooledDataSource;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.JdbcTemplate;

import java.beans.PropertyVetoException;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

public class Test01 {
    ApplicationContext ac = new ClassPathXmlApplicationContext("application.xml");

    @Test
    public void testGet() {
        TeamDao dao = (TeamDao) ac.getBean("teamDao");
        int count = dao.getCount();
        System.out.println("查询的总行数:" + count);
        Map<String, Object> many = dao.getMany();
        Set<Map.Entry<String, Object>> entries = many.entrySet();
        for (Map.Entry<String, Object> entry : entries) {
            System.out.println(entry.getKey() + "----" + entry.getValue());
        }
    }

    @Test
    public void testFindAll() {
        TeamDao dao = (TeamDao) ac.getBean("teamDao");
        List<Team> all = dao.findAll();
        for (Team team : all) {
            System.out.println(team);
        }
    }

    @Test
    public void testFindById() {
        TeamDao dao = (TeamDao) ac.getBean("teamDao");
        Team t = dao.findById(2);
        System.out.println(t);
    }

    @Test
    public void testDel() {
        TeamDao dao = (TeamDao) ac.getBean("teamDao");
        int res = dao.del(6);
        System.out.println("删除数据的结果:" + res);
    }

    @Test
    public void testUpdate() {
        ApplicationContext ac = new
                ClassPathXmlApplicationContext("application.xml");
        TeamDao dao = (TeamDao) ac.getBean("teamDao");
        Team team = new Team();
        team.setName("小牛");
        team.setLocation("达拉斯");
        team.setId(4);
        int res = dao.update(team);
        System.out.println("更新数据的结果:" + res);
    }

    @Test
    public void test() {
        ApplicationContext ac = new
                ClassPathXmlApplicationContext("application.xml");
        TeamDao dao = (TeamDao) ac.getBean("teamDao");
        Team team = new Team();
        team.setName("快船1");
        team.setLocation("洛杉矶1");
        int res = dao.insert(team);
        System.out.println("插入数据的结果:" + res);
    }

    @Test
    public void test01() throws PropertyVetoException {
//创建数据源
        ComboPooledDataSource dataSource = new ComboPooledDataSource();
        dataSource.setDriverClass("com.mysql.cj.jdbc.Driver");
        dataSource.setJdbcUrl("jdbc:mysql://192.168.58.128:3306/springJDBC?
                serverTimezone = UTC & characterEncoding = utf8 & useUnicode = true & useSSL = false");
                dataSource.setUser("root");
        dataSource.setPassword("root");
//使用JDBCTemplete
        JdbcTemplate template = new JdbcTemplate(dataSource);
        String sql = "insert into team(tname,location) value (?,?)";
        int update = template.update(sql, "勇士", "金州");
        System.out.println("插入数据的结果:" + update);
    }
}

6Spring事务管理

事务原本是数据库中的概念,在 Dao 层。但在实际开发中,一般将事务提升到业务层,即 Service 层。这样做是为了能够使用事务的特性来管理具体的业务。

6.1 Spring事务管理API

Spring 的事务管理,主要用到两个事务相关的接口。

6.1.1 事务管理器接口

事务管理器是 PlatformTransactionManager 接口对象。其主要用于完成事务的提交、回滚,及获取事务的状态信息。

?

PlatformTransactionManager 接口常用的实现类
DataSourceTransactionManager :使用 JDBC MyBatis 进行数据库操作时使用。
Spring 的回滚方式
Spring 事务的默认回滚方式是:发生运行时异常和 error 时回滚,发生受查 ( 编译 ) 异常时提交。不过, 对于受查异常,程序员也可以手工设置其回滚方式。

6.1.2 事务定义接口

事务定义接口 TransactionDefinition 中定义了事务描述相关的三类常量:事务隔离级别、事务传播行 为、事务默认超时时限,及对它们的操作。

?

6.1.2.1 事务隔离级别常量
这些常量均是以 ISOLATION_ 开头。即形如 ISOLATION_XXX
? DEFAULT :采用 DB 默认的事务隔离级别。 MySql 的默认为 REPEATABLE_READ Oracle 默认为 READ_COMMITTED。
? READ_UNCOMMITTED :读未提交。未解决任何并发问题。
? READ_COMMITTED :读已提交。解决脏读,存在不可重复读与幻读。
? REPEATABLE_READ :可重复读。解决脏读、不可重复读,存在幻读
? SERIALIZABLE :串行化。不存在并发问题。
6.1.2.2 事务传播行为常量
所谓事务传播行为是指,处于不同事务中的方法在相互调用时,执行期间事务的维护情况。如, A 事务 中的方法 doSome() 调用 B 事务中的方法 doOther() ,在调用执行期间事务的维护情况,就称为事务传播行为。事务传播行为是加在方法上的。

事务传播行为常量都是以 PROPAGATION_ 开头,形如 PROPAGATION_XXX

  • Propagation.REQUIRED:?当前没有事务的时候,就会创建一个新的事务;如果当前有事务,就直接加入该事务,比较常用的 设置 Propagation.SUPPORTS 支持当前事务,如果当前有事务,就直接加入该事务;当前没有事务的时候,就以非事务方式执行
  • Propagation.MANDATORY:?支持当前事务,如果当前有事务,就直接加入该事务;当前没有事务的时候,就抛出异常
  • Propagation.REQUIRES_NEW:?创建新事务,无论当前是否有事务都会创建新的
PROPAGATION_NESTED
PROPAGATION_NEVER
PROPAGATION_NOT_SUPPORTED
6.1.2.3 默认事务超时时限
常量 TIMEOUT_DEFAULT 定义了事务底层默认的超时时限, sql 语句的执行时长。 注意,事务的超时时限起作用的条件比较多,且超时的时间计算点较复杂。所以,该值一般就使用默认 值即可。

6.2 声明式事务控制

Spring 提供的对事务的管理,就叫做声明式事务管理。
如果用户需要使用 spring 的声明式事务管理,在配置文件中配置即可:不想使用的时候直接移除配置。这种方式实现了对事务控制的最大程度的解耦。
声明式事务管理,核心实现就是基于 AOP
Spring 中提供了对事务的管理。开发者只需要按照 spring 的方式去做就行。
事务必须在 service 层统一控制。
事务的粗细粒度:
细粒度:对方法中的某几行的代码进行开启提交回滚;
粗粒度:对整个方法进行开启提交回滚;
Spring 中的 aop 只能对方法进行拦截,所有我们也就针对方法进行事务的控制。
如果只有单条的查询语句,可以省略事务;如果一次执行的是多条查询语句,例如统计结果、报表查询。必须 开启事务。

6.3 基于注解的事务

package com.lyl.service;

import com.lyl.dao.TeamDao;
import com.lyl.pojo.Team;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

@Service
public class TeamService {
    @Autowired
    private TeamDao teamDao;

    /**
     * @Transactional 属性 说明:
     * readOnly:是否只读
     * <p>
     * rollbackFor={Exception.class}: 遇到什么异常会回滚
     * <p>
     * propagation事务的传播:
     * Propagation.REQUIRED:当前没有事务的时候,就会创建一个新的事务;如果当前有事务,就直
     * 接加入该事务,比较常用的设置
     * Propagation.SUPPORTS:支持当前事务,如果当前有事务,就直接加入该事务;当前没有事务的
     * 时候,就以非事务方式执行
     * Propagation.MANDATORY:支持当前事务,如果当前有事务,就直接加入该事务;当前没有事务的
     * 时候,就抛出异常
     * Propagation.REQUIRES_NEW:创建新事务,无论当前是否有事务都会创建新的
     * <p>
     * isolation=Isolation.DEFAULT:事务的隔离级别:默认是数据库的隔离级别
     */
    @Transactional(propagation = Propagation.REQUIRED, rollbackFor =
            {Exception.class})
    public int insert(Team team) {
        int num1 = teamDao.insert(team);
        System.out.println("第一条执行结果:num1=" + num1);
        System.out.println(10 / 0);
        int num2 = teamDao.insert(team);
        System.out.println("第二条执行结果:num2=" + num2);
        return num2 + num1;
    }
}

@Test
public void test01(){ 
    ApplicationContext ac=new ClassPathXmlApplicationContext("application.xml"); 
    TeamService teamService = (TeamService) ac.getBean("teamService"); 
    int num=teamService.insert(new Team("凯尔特人","波士顿")); 
    System.out.println(num); 
}
<!--配置文件中添加context约束-->
<context:component-scan base-package="com.lyl"/>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<tx:annotation-driven transaction-manager="transactionManager"/>

6.4 基于XML的事务

添加依赖
<dependency>
    <groupId>org.aspectj</groupId> 
    <artifactId>aspectjweaver</artifactId> 
    <version>1.9.6</version> 
</dependency>
<!-- 事务管理器 -->
<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="insert*" propagation="REQUIRED"/>
    <tx:method name="add*" propagation="REQUIRED"/>
    <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
</tx:attributes>
</tx:advice> <aop:config>
<aop:pointcut id="pt" expression="execution(* com.kkb.service..*.* (..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="pt"/>
</aop:config>

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-08-01 14:22:10  更:2021-08-01 14:22:51 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年5日历 -2024/5/5 10:15:41-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码