1. Spring

Spring是分层的JavaSE/EE应用 full-stack轻量级 一站式 开源框架

体系结构:

06. Spring - 图1

2. IoC 反转

IoC(Inversion Of Control) 控制反转,Spring反向控制应用程序所需要使用的外部资源

Spring控制的资源全部放置在Spring容器中,该容器称为IoC容器

2.1. 耦合与内聚

耦合(Coupling): 代码书写过程中所使用技术的结合紧密度,用于衡量软件中各个模块之间的互联程度

内聚(Cohesion):代码书写过程中单个模块内部各组成部分间的联系,用于衡量软件中各个功能模块内部的功能联系

我们追求 高内聚 低耦合

2.2. 工厂模式

06. Spring - 图2

2.3. 创建项目

  • 创建maven项目

  • 导入模块

      1. <dependencies>
      2. <dependency>
      3. <groupId>org.springframework</groupId>
      4. <artifactId>spring-context</artifactId>
      5. <version>5.1.9.RELEASE</version>
      6. </dependency>
      7. </dependencies>
  • 在resources中创建applicationContext.xml文件

      1. <?xml version="1.0" encoding="UTF-8"?>
      2. <beans xmlns="http://www.springframework.org/schema/beans"
      3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      4. xsi:schemaLocation="http://www.springframework.org/schema/beans
      5. https://www.springframework.org/schema/beans/spring-beans.xsd">
      6. <!-- bean为映射标签 创建spring控制的资源 id为操作空间 class为实现类引用路径-->
      7. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl"/>
      8. </beans>
  • 使用方法

      1. //2.加载配置文件
      2. ApplicationContext ctx =new ClassPathXmlApplicationContext("applicationContext.xml");
      3. //3.获取资源
      4. UserService userService = (UserService) ctx.getBean("userService");
      5. userService.save();

2.4. bean

  • <bean>标签 定义spring中的资源, 此标签定义的资源将受到spring控制

    • id属性 bean的名词 通过id值获取到bean

    • class属性 bean的类型

    • name属性 bean的别名 我们可以通过id或者name来获取到bean 并且name可以起多个别名 别名之间用逗号隔开

    • scope属性 定义bean的作用范围

      • singleton值 设置创建出的对象保存在spring容器中 是一个单例对象 默认值 单例时创建spring容器时就加载bean绑定的类
      • prototype值 设置创建出的对象保存在spring容器中 是一个非单例对象 非单例则是在getBean时创建类
      • request、session、application、websocket值 设置创建出的对象放置在web容器对应的位置
    • init-method bean对象初始化时执行指定方法

      • 值为bean对应的类中的具体方法名
    • destroy-method bean对象销毁时执行指定方法

      • 值为bean对应的类中的具体方法名 只有ClassPathXmlApplicationContext才有close方法 spring默认自动销毁但销毁方法不会执行
      • 06. Spring - 图3
    • factory-method属性

      • 值为静态工厂中创建对象的方法
    • factory-bean属性

      • 值为实例工厂的id 需要先用一个bean绑定实例工厂类 然后第二个bean的factory-bean为第一个bean的id 然后用factory-method调用其实例工厂的方法

        1. <!-- factory-bea 实例工厂创建对象 需要bean先绑定实例工厂类 然后第二个bean的factory-bea为实例工厂的id 然后factory-method调用其创建对象方法-->
        2. <bean id="userService3" class="com.itheima.service.UserServiceFactory2" />
        3. <bean factory-bean="userService3" factory-method="getService"/>

3. DI 依赖注入

DI(Dependency Injection) 依赖注入,应用程序运行依赖的资源由Spring为其提供,资源进入应用程序的方式称为注入

3.1. set注入

  • <property>标签 使用set方法的形式为bean提供资源 是bean的子标签

    • name属性

      • 值为对应bean中的属性名 要该属性必须为私有属性同时提供set方法
    • value属性

      • 值为name绑定属性的 值 设定非引用类型属性的值
    • ref属性

      • 值为引用类型属性对象bean的id 不能与value同时使用

配置

  1. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl">
  2. <!-- 将要注入的引用类型变量通过property属性进行注入 对应的name是要注入的变量名 使用ref声明要注入的bean的id -->
  3. <property name="userDao" ref="userDao"></property>
  4. <!-- 如果要注入的变量为一个值 我们通过value来设置 同样需要在类中设置私有变量 和set方法-->
  5. <property name="num" value="13"/>
  6. </bean>
  7. <!-- 将要注入的资源声明为bean-->
  8. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl"/>

反转资源注入

  1. import com.itheima.dao.UserDao;
  2. import com.itheima.service.UserService;
  3. public class UserServiceImpl implements UserService {
  4. private UserDao userDao;
  5. private int num;
  6. //对需要进行注入的变量添加set方法
  7. public void setUserDao(UserDao userDao) {
  8. this.userDao = userDao;
  9. }
  10. public void setNum(int num) {
  11. this.num = num;
  12. }
  13. @Override
  14. public void save() {
  15. userDao.save();
  16. System.out.println("running...");
  17. System.out.println(num);
  18. }
  19. }

调用

  1. public class UserApp {
  2. public static void main(String[] args) {
  3. //2.加载配置文件
  4. ApplicationContext ctx =new ClassPathXmlApplicationContext("applicationContext.xml");
  5. //3.获取资源
  6. UserService userService = (UserService) ctx.getBean("userService");
  7. userService.save();
  8. }
  9. }

06. Spring - 图4

3.2. 构造器注入

  • <constructor-arg> 标签 使用构造方法的形式为bean提供资源 是bean的子标签

    • name属性

      • 值为对应bean中的属性名 要该属性必须为私有属性同时提供set方法
    • value属性

      • 值为name绑定属性的 值 设定非引用类型属性的值
    • ref属性

      • 值为引用类型属性对象bean的id 不能与value同时使用
    • type属性

      • 值为设定构造方法参数的类型 用于赋值给指定的变量类型 推荐使用nanme指定变量
    • index属性

      • 值为设定构造方法参数的位置 用于赋值给指定 构造方法中 变量的index 从0开始 推荐使用name指定变量

被注入类要声明构造方法并赋值

  1. private UserDao userDao;
  2. private int num;
  3. public UserServiceImpl(UserDao userDao,int num){
  4. this.userDao=userDao;
  5. this.num=num;
  6. }

bean配置

  1. <!-- 构造方法注入-->
  2. <!-- 注入类-->
  3. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl"/>
  4. <!--被注入的类-->
  5. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl">
  6. <constructor-arg ref="userDao" />
  7. <constructor-arg name="num" value="456"/>
  8. </bean>

3.3. 集合类型数据注入

<array>、<list>、<set><map><props>等集合 是归属于property或constructor-arg标签的子标签

  • <list>

    • <value>标签

      • 值为元素对于的值
  • <props>

    • <prop>标签

      • key属性

        • 值为属性名
      • 值为元素对于的值
  • <array>

  • <value>标签

    • 值为元素对于的值
  • <set>

    • <value>标签

      • 值为元素对于的值
  • <enrty>标签

    • key属性

      • 值为key
    • value属性

      • 值为值
  1. <!-- 集合注入-->
  2. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl"/>
  3. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl">
  4. <property name="userDao" ref="userDao"/>
  5. <property name="bookDao" ref="bookDao"/>
  6. </bean>
  7. <bean id="bookDao" class="com.itheima.dao.impl.BookDaoImpl">
  8. <property name="al">
  9. <list>
  10. <value>helll</value>
  11. <value>world</value>
  12. </list>
  13. </property>
  14. <property name="properties">
  15. <props>
  16. <prop key="name">age</prop>
  17. <prop key="value">19</prop>
  18. </props>
  19. </property>
  20. <property name="arr">
  21. <array>
  22. <value>123</value>
  23. <value>456</value>
  24. </array>
  25. </property>
  26. <property name="hs">
  27. <set>
  28. <value>111</value>
  29. <value>222</value>
  30. </set>
  31. </property>
  32. <property name="hm">
  33. <map>
  34. <entry key="name" value="zhangsan"/>
  35. <entry key="name" value="lisi"/>
  36. </map>
  37. </property>
  38. </bean>

3.4. p命名空间 简化配置

增加属性 xmlns:p=”http://www.springframework.org/schema/p“ 配置p命名空间

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns:p="http://www.springframework.org/schema/p"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans
  5. https://www.springframework.org/schema/beans/spring-beans.xsd">

p命名空间为bean注入属性值 替代property

  1. <!-- 两个bean一样的-->
  2. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl" p:bookDao-ref="bookDao" p:userDao-ref="userDao" />
  3. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl">
  4. <property name="userDao" ref="userDao"/>
  5. <property name="bookDao" ref="bookDao"/>
  6. </bean>

3.5. SpEL EL表达式

spring通过EL表达式的支持,统一属性注入格式

06. Spring - 图5

在value中书写el表达式

properties文件

增加属性 xmlns:context=”http://www.springframework.org/schema/context

并加上约束 http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns:p="http://www.springframework.org/schema/p"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="
  6. http://www.springframework.org/schema/beans
  7. https://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context
  9. https://www.springframework.org/schema/context/spring-context.xsd
  10. ">

加context命名空间的支持

  1. <!-- context命名空间 加载类路径下 所有的properties文件 加载后使用${属性名} -->
  2. <context:property-placeholder location="classpath:*.properties"/>
  3. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl">
  4. <constructor-arg ref="userDao" />
  5. <constructor-arg name="num" value="${age}"/>
  6. </bean>-->

3.6. import 团队开发

xml中通过<import>标签我们可以引入外部的IoC配置

  • <impoprt>标签 引用外部IoC配置

    • resource属性 配置文件名

3.7. 容器运行时加载多个IoC配置

  1. ApplicationContext ctx =new ClassPathXmlApplicationContext("applicationContext.xml","applicationContext2.xml");

3.8. bean注意事项

  • id是唯一的 同一文件中不允许存在相同id 而不同文件中后定义覆盖前面的
  • 导入配置文件可以理解为 将配置文件复制粘贴到对应位置
  • 导入配置文件顺序不同可能导致程序运行结果不同

3.9. ApplicationContext对象

06. Spring - 图6

3.10. 第三方资源bean配置

添加druid模块 druid是阿里巴巴开发的jdbc连接池组件

  1. <dependency>
  2. <groupId>com.alibaba</groupId>
  3. <artifactId>druid</artifactId>
  4. <version>1.1.21</version>
  5. </dependency>

配置文件

  1. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
  2. <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
  3. <property name="url" value="jdbc:mysql://localhost:3306/heima_mm"/>
  4. <property name="username" value="root"/>
  5. <property name="password" value="123456"/>
  6. </bean>

创建

  1. ApplicationContext ctx =new ClassPathXmlApplicationContext("applicationContext.xml");
  2. DruidDataSource dataSource = (DruidDataSource) ctx.getBean("dataSource");
  3. System.out.println(dataSource);

看清楚 第三方类的类名 属性名 set方法

3.11. Spring+MyBatis

applicationContext.xml

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns:p="http://www.springframework.org/schema/p"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="
  6. http://www.springframework.org/schema/beans
  7. https://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context
  9. https://www.springframework.org/schema/context/spring-context.xsd
  10. ">
  11. <context:property-placeholder location="classpath:*.properties"/>
  12. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
  13. <property name="driverClassName" value="${jdbc.driver}"/>
  14. <property name="url" value="${jdbc.url}"/>
  15. <property name="username" value="${jdbc.username}"/>
  16. <property name="password" value="${jdbc.password}"/>
  17. </bean>
  18. <!-- spring整合mybatis后控制创建连接用的对象-->
  19. <bean class="org.mybatis.spring.SqlSessionFactoryBean">
  20. <property name="dataSource" ref="dataSource"/>
  21. <property name="typeAliasesPackage" value="com.itheima.domain"/>
  22. </bean>
  23. <!-- 加载mybatis映射配置扫描 将其作为spring的bean进行管理-->
  24. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  25. <property name="basePackage" value="com.itheima.dao"/>
  26. </bean>
  27. </beans>

pox.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>spring+mybatis</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.mybatis</groupId>
  16. <artifactId>mybatis</artifactId>
  17. <version>3.5.3</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>mysql</groupId>
  21. <artifactId>mysql-connector-java</artifactId>
  22. <version>5.1.47</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-context</artifactId>
  27. <version>5.1.9.RELEASE</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-jdbc</artifactId>
  32. <version>5.1.9.RELEASE</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>druid</artifactId>
  37. <version>1.1.21</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mybatis</groupId>
  41. <artifactId>mybatis-spring</artifactId>
  42. <version>2.0.3</version>
  43. </dependency>
  44. </dependencies>
  45. </project>

4. 注解

注解代替xml配置可以简化配置 提供开发效率

https://www.cnblogs.com/alter888/p/9083963.html

06. Spring - 图7

并且要在applicationContext.xml中配置组件扫描

  1. <!-- 配置组件扫描-->
  2. <context:component-scan base-package="com.itheima"/>

5. 新注解

使用上面的注解还不能完全替代xml配置 如第三方的类

06. Spring - 图8

@Bean 标记第三方类

  1. public class JDBCConfig {
  2. @Value("${jdbc.driver}")
  3. private String driver;
  4. @Value("${jdbc.url}")
  5. private String url;
  6. @Value("${jdbc.username}")
  7. private String userName;
  8. @Value("${jdbc.password}")
  9. private String password;
  10. @Bean("dataSource")
  11. public DataSource getDataSource(){
  12. DruidDataSource ds = new DruidDataSource();
  13. ds.setDriverClassName(driver);
  14. ds.setUrl(url);
  15. ds.setUsername(userName);
  16. ds.setPassword(password);
  17. return ds;
  18. }
  19. }

06. Spring - 图9

6. 加载控制

@DependsOn(“classname”)

06. Spring - 图10

@Order(n) 控制加载顺序

06. Spring - 图11

@Lazy 延迟加载

06. Spring - 图12

7. 整合Junit

在Spring中之前我们测试都需要获取容器 然后获取bean

导入坐标

  1. <dependency>
  2. <groupId>junit</groupId>
  3. <artifactId>junit</artifactId>
  4. <version>4.12</version>
  5. <scope>test</scope>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework</groupId>
  9. <artifactId>spring-test</artifactId>
  10. <version>5.1.9.RELEASE</version>
  11. </dependency>

测试样例

  1. //设定spring专用的类加载器
  2. @RunWith(SpringJUnit4ClassRunner.class)
  3. //设定加载的spring上下文对应的配置
  4. @ContextConfiguration(classes = SpringConfig.class)
  5. public class UserServiceTest {
  6. @Autowired
  7. private AccountService accountService;
  8. @Test
  9. public void testFindById(){
  10. Account ac = accountService.findById(2);
  11. // System.out.println(ac);
  12. //assert 预计值 结果值 如果不一致则测试不通过
  13. Assert.assertEquals("Jock",ac.getName());
  14. }
  15. @Test
  16. public void testFindAll(){
  17. List<Account> list = accountService.findAll();
  18. Assert.assertEquals(2,list.size());
  19. }
  20. }

8. Ioc底层核心原理

06. Spring - 图13

06. Spring - 图14

06. Spring - 图15

06. Spring - 图16

9. 组件扫描过滤器

@ComponentScan 组件扫描器拥有过滤指定组件功能

  • 按注解类型 过滤

    • excludeFilters 设置排除性过滤器
    • includeFilters 设置包含性过滤器
  1. //所有的@Service注解被过滤
  2. @ComponentScan(value = "com.itheima",excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION,classes = Service.class))

9.1. 自定义组件过滤器

继承TypeFilter 实现match方法 返回false则不过滤 返回true则过滤

  1. package com.itheima.config.filter;
  2. import org.springframework.core.type.classreading.MetadataReader;
  3. import org.springframework.core.type.classreading.MetadataReaderFactory;
  4. import org.springframework.core.type.filter.TypeFilter;
  5. import java.io.IOException;
  6. public class MyTypeFilter implements TypeFilter {
  7. public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) throws IOException {
  8. ClassMetadata classMetadata = metadataReader.getClassMetadata(); //获取class的元数据
  9. String className = classMetadata.getClassName(); //获取类名
  10. System.out.println(className);
  11. if(className.equals("com.itheima.service.impl.AccountServiceImpl")){
  12. return true;
  13. }
  14. return false;
  15. }
  16. }
  • 按自定义过滤器 过滤
  1. @ComponentScan(value = "com.itheima",excludeFilters = @ComponentScan.Filter(type = FilterType.CUSTOM,classes = MyTypeFilter.class))

10. 自定义导入器

继承 ImportSelector 实现selectImports方法

  1. package com.itheima.config.selector;
  2. import org.springframework.context.annotation.ImportSelector;
  3. import org.springframework.core.type.AnnotationMetadata;
  4. import java.util.ResourceBundle;
  5. public class MyImportSelector implements ImportSelector {
  6. public String[] selectImports(AnnotationMetadata importingClassMetadata) {
  7. //使用properties文件读取
  8. ResourceBundle bundle = ResourceBundle.getBundle("import"); //文件名
  9. String className = bundle.getString("className"); //属性名
  10. return new String[]{className};
  11. // return new String[]{"com.itheima.service.impl.AccountServiceImpl"}; //直接返回指定类不推荐使用
  12. }
  13. }

导入指定的组件 不用需要bean绑定或者注解绑定

  1. @Import(MyImportSelector.class)

11. 自定义注册器

继承 ImportBeanDefinitionRegistrar 实现 registerBeanDefinitions 方法

  1. package com.itheima.config.registrar;
  2. import org.springframework.beans.factory.support.BeanDefinitionRegistry;
  3. import org.springframework.context.annotation.ClassPathBeanDefinitionScanner;
  4. import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
  5. import org.springframework.core.type.AnnotationMetadata;
  6. import org.springframework.core.type.classreading.MetadataReader;
  7. import org.springframework.core.type.classreading.MetadataReaderFactory;
  8. import org.springframework.core.type.filter.TypeFilter;
  9. import java.io.IOException;
  10. public class MyImportBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar {
  11. public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
  12. ClassPathBeanDefinitionScanner scanner = new ClassPathBeanDefinitionScanner(registry,false);
  13. scanner.addIncludeFilter(new TypeFilter() {
  14. public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) throws IOException {
  15. return true;
  16. }
  17. });
  18. scanner.scan("com.itheima");
  19. }
  20. }
  1. @Import(MyImportBeanDefinitionRegistrar.class) //自定义注册器

12. bean初始化过程

06. Spring - 图17

06. Spring - 图18

13. AOP

Aspect Oriented Programming 面向切门编程 通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术

AOP 是 OOP(面向对象) 的延续

06. Spring - 图19

作用:在程序运行期间 在不修改源码的情况下对方法进行功能增强

优势:减少重复代码 提高开发效率 并且便于维护

13.1. AOP的动态代理对象

  • JDK代理 : 基于接口的动态代理技术
  • cglib代理 : 基于父类的动态代理技术

导入坐标

  1. <dependency>
  2. <groupId>org.aspectj</groupId>
  3. <artifactId>aspectjweaver</artifactId>
  4. <version>1.9.4</version>
  5. </dependency>

把共性的功能提前出来 并提供类和方法

13.2. XML配置

添加aop 以下声明

  1. xmlns:aop="http://www.springframework.org/schema/aop"
  2. http://www.springframework.org/schema/aop
  3. https://www.springframework.org/schema/aop/spring-aop.xsd

标签头

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns:p="http://www.springframework.org/schema/p"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. https://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context
  9. https://www.springframework.org/schema/context/spring-context.xsd
  10. http://www.springframework.org/schema/aop
  11. https://www.springframework.org/schema/aop/spring-aop.xsd">

绑定

  1. <!--3.开启AOP命名空间-->
  2. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl"/>
  3. <!--2.配置共性功能成功spring控制的资源 共性功能的类-->
  4. <bean id="myAdvice" class="com.itheima.aop.AOPAdvice"/>
  5. <!--4.配置AOP-->
  6. <aop:config>
  7. <!--5.配置切入点-->
  8. <aop:pointcut id="pt" expression="execution(* *..*(..))"/>
  9. <!--6.配置切面(切入点与通知的关系)-->
  10. <aop:aspect ref="myAdvice">
  11. <!--7.配置具体的切入点对应通知中那个操作方法 pointcut-ref为pointcut对应的id-->
  12. <aop:before method="function" pointcut-ref="pt"/>
  13. </aop:aspect>
  14. </aop:config>
  • <aop:config>标签 aop根标签 在beans可以拥有多个

    • <aop:aspect>标签 可以在aop:config中配置多个

      • ref属性 通知(共性类)所在的bean的id
      • <aop:before>标签 切面

        • method属性 通知中具体的方法
        • pointcut-ref属性 与aop:pointcut中的id要一致
        • pointcut=”execution( ..*(..))” 私有切入点 不能与pointcut-ref共存
    • <aop:pointcut>标签 也可以拥有多个 上级未config则为公共切入点 上级未aspect则为局部切入点

      • id属性 名称 可以自定义
      • expression属性 切入点模式

13.2.1. 切入点表达式

06. Spring - 图20

06. Spring - 图21

支持逻辑运算符 和非运算

13.2.2. 通知类型

  • <aop:before> 前置通知 如果通知中抛出异常 则阻止原始方法运行
  • <aop:after> 后置通知 无论是否异常 都会执行通知
  • <aop:after-running> 运行通知 如果抛出异常无法通知
  • <aop:after-throwing> 异常通知 如果没有抛出异常无法通知
  • <aop:around> 环绕通知 在原始方法执行前后都有对应执行的执行,还可以阻止原始方法执行

    • 06. Spring - 图22

13.2.3. 通知顺序

当同一个切入点配置多个通知时,标签配置的顺序就是执行的顺序

13.2.4. 通知获取数据

  • 获取参数 所有的通知都可以获取参数

      1. public void before(JoinPoint jp) throws Throwable{
      2. Object[] args = jp.getArgs();
      3. }
  • 第二个方法

    • 在通知方法中定义变量

        1. public void before2(int a) {
        2. System.out.println(a);
        3. }
  1. -

在applicationContext.xml 配置aop传参

  1. -
  1. <!-- &amp是& args(a) 为aop通知方法中形参的名字 -->
  2. <aop:before method="before2" pointcut="execution(* *..*(..)) &amp;&amp; args(a)"/>

13.2.5. 通知获取返回值

  • 获取返回值 只有around 和 after-returning 通知

      1. public void before2(Object ret) {
      2. System.out.println(ret);
      3. }
    1. <!-- returning为通知方法形参的名字 此变量为原始方法的返回值 -->
    2. <aop:after-returning method="before2" pointcut-ref="pt" returning="ret"/>
  • 第二种方法

      1. public Object around (ProceedingJoinPoint pjp) throws Throwable {
      2. //对原始方法的调用 返回原始方法的返回值
      3. Object proceed = pjp.proceed();
      4. System.out.println(proceed);
      5. //必须返回返回值 不然原始方法会异常
      6. return proceed;
      7. }
  1. -
  1. <aop:around method="around" pointcut-ref="pt"/>

13.2.6. 获取异常

  • 获取异常 around 和 after-throwing 通知获取

      1. public void afterThrowing(Throwable t){
      2. System.out.println(t.getMessage());
      3. }
    1. <!-- throwing为通知方法中形参的名称 用于获取异常 -->
    2. <aop:after-throwing method="afterThrowing" pointcut-ref="pt" throwing="t"/>
  • 第二种方法

      1. public Object around (ProceedingJoinPoint pjp) {
      2. //对原始方法的调用 返回原始方法的返回值
      3. Object proceed = null;
      4. try {
      5. proceed = pjp.proceed();
      6. } catch (Throwable e) {
      7. e.printStackTrace();
      8. }
      9. System.out.println(proceed);
      10. //必须返回返回值 不然原始方法会异常
      11. return proceed;
      12. }
  1. -
  1. <aop:around method="around" pointcut-ref="pt"/>

4. 注解

  • 开aop注解支持

      1. <aop:aspectj-autoproxy/>
  • 在AOP类上加注解

    • ```java @Component //bean绑定 @Aspect //标记AOP 注解 public class AOPAdvice { @Pointcut(“execution( ..*(..))”) //定义一个空方法 并且绑定为aop id=pt public void pt(){}

      @Before(“pt()”) //标记为aop-before方法 并且绑定空间名称 pt() public void before(JoinPoint jp) throws Throwable { Object[] args = jp.getArgs(); }

      @After(“pt()”) public void function() { System.out.println(“共性功能”); }

      @Around(“pt()”) public Object around (ProceedingJoinPoint pjp) { //对原始方法的调用 返回原始方法的返回值 Object proceed = null; try {

      1. proceed = pjp.proceed();

      } catch (Throwable e) {

      1. e.printStackTrace();

      } System.out.println(proceed); //必须返回返回值 不然原始方法会异常 return proceed; }

      @AfterReturning(value = “pt()”, returning = “ret”) public void before2(Object ret) { System.out.println(ret); }

      @AfterThrowing(value = “pt()”, throwing = “t”) public void afterThrowing(Throwable t) { System.out.println(t.getMessage()); }

}

  1. -
  2. [@Aspect ](/Aspect ) 标记为aop 在AOP类上 记得实例化并[@Component ](/Component )
  3. -
  4. [@Pointcut ](/Pointcut ) 定义个一个空参无返回值的空方法 为此aop绑定空间名称 为方法名 如果在其他类中创建 则通知中调用要加上类名 如: aopconfig.pt()
  5. -
  6. [@After ](/After ) 后置通知
  7. -
  8. [@Before ](/Before ) 前置通知
  9. <a name="4e0e0ce7"></a>
  10. ### 13.3.1. 注解通知执行顺序
  11. 1. 与方法定义位置无关
  12. 2. 如果通知类型同 与方法名自然排序来执行
  13. 3. 如果是不同AOP的通知 是与AOP类名有关
  14. 4. 在类上方 使用注解 @Order(n) 自定义顺序
  15. <a name="9e28a5ff"></a>
  16. ### 13.3.2. AOP配置 (注解)
  17. 前面我们用xml配置注解
  18. - @EnableAspectJAutoProxy 开启aop注解 spring配置类中标记注解
  19. <a name="73b3dce7"></a>
  20. ## 13.4. 静态代理
  21. 装饰者模式 (Decorator Pattern) 在不惊动原始设计的基础上,为其添加功能
  22. 创建一个新的类 并继承原接口 有参构造方法 形参为原始对象 调用原始方法
  23. ```java
  24. public class UseServiceImplDecorator implements UserService {
  25. private UserService userService;
  26. public UseServiceImplDecorator(UserService userService) {
  27. this.userService = userService;
  28. }
  29. @Override
  30. public void save() {
  31. userService.save();
  32. System.out.println("刮大白");
  33. }
  34. }

13.5. JDK动态代理

  1. public class UserServiceJDKProxy {
  2. public static UserService createUserServiceJDKProxy(UserService userService) {
  3. ClassLoader cl = userService.getClass().getClassLoader(); //获取加载类
  4. Class[] classes = userService.getClass().getInterfaces(); //获取类接口
  5. InvocationHandler ih = new InvocationHandler() {
  6. @Override
  7. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  8. Object invoke = method.invoke(userService, args); //调用原始方法
  9. System.out.println("刮大白"); //不影响原始类下实现增强功能
  10. return invoke;
  11. }
  12. };
  13. UserService service = (UserService) Proxy.newProxyInstance(cl, classes, ih);
  14. return service;
  15. }
  16. }

13.6. CGLIB

CGLIB(Code Generation Library) Code生成类库 不限定是否有具体接口 无需原始代理对象

  1. public class UserServiceCglibProxy {
  2. public static UserService createUserServiceCglibProxy(Class claszz) {
  3. Enhancer enhancer = new Enhancer();
  4. enhancer.setSuperclass(claszz); //设置enhancer的父类
  5. enhancer.setCallback(new MethodInterceptor() {
  6. @Override
  7. public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {
  8. // method.invoke(o,objects);
  9. // methodProxy.invoke(o,objects);
  10. System.out.println(method.getName()); //获取方法名
  11. Object ret = methodProxy.invokeSuper(o, objects);//原始方法调用 默认对所有方法做增强
  12. if (method.getName().equals("save")) { //需要判断方法名
  13. System.out.println("刮大白");
  14. }
  15. return ret;
  16. }
  17. });
  18. return (UserService) enhancer.create();
  19. }
  20. }

测试类

  1. public static void main(String[] args) {
  2. UserService userService = UserServiceCglibProxy.createUserServiceCglibProxy(UserServiceImpl.class);
  3. userService.save();
  4. }

13.7. AOP底层 切换动态代理方式

AOP底层使用的JDK的动态代理方式

我们可以配置为使用CGLIB方式 需要在aop:config中配置

  1. <!--XML配置AOP 默认为flase 为jdk动态代理 true为CGLIB代理 -->
  2. <aop:config proxy-target-class="true">
  3. <!-- 注解配置AOP-->
  4. <aop:aspectj-autoproxy proxy-target-class="false"/>
  1. //注解驱动
  2. @EnableAspectJAutoProxy(proxyTargetClass = true)

13.8. 织入时机

06. Spring - 图23

14. 事务

事务指数据库中多个操作合并在一起形成的操作序列

  • 当操作出现失败 回滚事务 保障数据的一致性
  • 当并发访问数据库时 防止并发访问操作结果相互干扰
  • 06. Spring - 图24

14.1. 事务核心对象

06. Spring - 图25

14.2. 编程式事务

  1. private DataSource dataSource;
  2. public void setDataSource(DataSource dataSource) {
  3. this.dataSource = dataSource;
  4. }
  5. //开启事务
  6. PlatformTransactionManager ptm = new DataSourceTransactionManager(dataSource);
  7. //事务定义
  8. TransactionDefinition td = new DefaultTransactionDefinition();
  9. //事务状态
  10. TransactionStatus ts = ptm.getTransaction(td);
  11. accountDao.inMoney(outName, money);
  12. // int i = 1 / 0;
  13. accountDao.outMoney(inName, money);
  14. //提交事务
  15. ptm.commit(ts);

业务层要注入dataSource

  1. <bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl">
  2. <property name="accountDao" ref="accountDao"/>
  3. <property name="dataSource" ref="dataSource"/>
  4. </bean>

14.3. AOP改造编程式事务

  1. private DataSource dataSource;
  2. public void setDataSource(DataSource dataSource) {
  3. this.dataSource = dataSource;
  4. }
  5. public Object transactionManager(ProceedingJoinPoint pjp) throws Throwable {
  6. //开启事务
  7. PlatformTransactionManager ptm = new DataSourceTransactionManager(dataSource);
  8. //事务定义
  9. TransactionDefinition td = new DefaultTransactionDefinition();
  10. //事务状态
  11. TransactionStatus ts = ptm.getTransaction(td);
  12. Object ret = pjp.proceed(pjp.getArgs());
  13. //提交事务
  14. ptm.commit(ts);
  15. return ret;
  16. }
  1. <bean id="txAdvice" class="com.itheima.aop.TxAdvice">
  2. <property name="dataSource" ref="dataSource"/>
  3. </bean>
  4. <aop:config>
  5. <aop:pointcut id="pt" expression="execution(* *..transfer(..))"/>
  6. <aop:aspect ref="txAdvice">
  7. <aop:around method="transactionManager" pointcut-ref="pt"/>
  8. </aop:aspect>
  9. </aop:config>

14.4. 声明式事务

声明添加域

xmlns:tx=”http://www.springframework.org/schema/tx

http://www.springframework.org/schema/tx

https://www.springframework.org/schema/tx/spring-tx.xsd

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xmlns:tx="http://www.springframework.org/schema/tx"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. https://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context
  9. https://www.springframework.org/schema/context/spring-context.xsd
  10. http://www.springframework.org/schema/tx
  11. https://www.springframework.org/schema/tx/spring-tx.xsd
  12. http://www.springframework.org/schema/aop
  13. https://www.springframework.org/schema/aop/spring-aop.xsd">
  1. <bean class="org.mybatis.spring.SqlSessionFactoryBean">
  2. <property name="dataSource" ref="dataSource"/>
  3. <property name="typeAliasesPackage" value="com.itheima.domain"/>
  4. </bean>
  5. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  6. <property name="basePackage" value="com.itheima.dao"/>
  7. </bean>
  8. <bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl">
  9. <property name="accountDao" ref="accountDao"/>
  10. </bean>
  11. <!-- tx声明-->
  12. <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  13. <property name="dataSource" ref="dataSource"/>
  14. </bean>
  15. <!-- 定义事务管理的通知类-->
  16. <tx:advice id="txAdvice" transaction-manager="txManager">
  17. <!--定义要控制的事务-->
  18. <tx:attributes>
  19. <!-- 指定方法控制事务 read-only 是否开启只读事务-->
  20. <!-- <tx:method name="transfer" read-only="false"/>-->
  21. <tx:method name="*" read-only="false"/>
  22. <tx:method name="get*" read-only="true"/>
  23. <tx:method name="find*" read-only="true"/>
  24. </tx:attributes>
  25. </tx:advice>
  26. <aop:config>
  27. <aop:pointcut id="pt" expression="execution(* com.itheima.service.*Service.*(..))"/>
  28. <!-- advice可以是普通类不实现接口或没有继承关系 advisor通知类必须实现通知接口 -->
  29. <aop:advisor advice-ref="txAdvice" pointcut-ref="pt"/>
  30. </aop:config>

14.5. 事务传播行为

06. Spring - 图26

06. Spring - 图27

需要指定传播属性则在tx:method 的 propagation 属性配置

  1. <tx:method name="a父" read-only="false" propagation="REQUIRED"/>
  2. <tx:method name="b子" read-only="false" propagation="REQUIRED"/>

14.6. 注解事务

在业务层 sql操作接口(全部抽象方法 推荐这个 或接口中的抽象方法)/类(全部方法)/方法上都可以 上面加 @Transactional

  1. @Transactional(readOnly = false, timeout = -1, isolation = Isolation.DEFAULT, rollbackFor = {IOException.class},propagation = Propagation.REQUIRED)
  2. public void transfer(String outName, String inName, Double money);
  1. 开启tx注解驱动 xml版
  1. <!--事务管理为事务注解绑定的方法-->
  2. <tx:annotation-driven transaction-manager="txManager"/>
  1. 注解版 注解驱动 在springconfig类上标记
  1. @EnableTransactionManagement

并且配置事务核心对象

  1. @Bean
  2. public PlatformTransactionManager getTransactionManager(DataSource dataSource){
  3. return new DataSourceTransactionManager(dataSource);
  4. }

15. Spring模板对象

15.1. JdbcTemplate