本文连接:https://www.cnblogs.com/qzhc/p/11969734.html

接下来我将用一个很简单的实例

1、 环境搭建

1.1、 第一步:准备必要的代码

业务层代码:

AccountServiceImpl.java

package com.henu.service.impl;

import com.henu.service.AccountService;

public class AccountServiceImpl implements AccountService {
public void saveAccount() {
System.out.println("执行了保存");
}
}

测试类:

AOPtest.java

package com.henu.test;

import com.henu.service.AccountService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; public class AOPtest {
public static void main(String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
AccountService as = (AccountService) ac.getBean("accountService");
as.saveAccount();
}
}

1.2、导入所需要的jar包

我的demo是用maven管理的:pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <groupId>com.henu</groupId>
<artifactId>day03_spring_adviceType</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.7</version>
</dependency>
</dependencies> </project>

1.3、创建 spring 的配置文件并导入约束和配置spring的ioc

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--配置spring的Ioc,把service对象配置起来--> <bean id="accountService" class="com.henu.service.impl.AccountServiceImpl"></bean>

1.4、写一个公共类作为通知

logger.java

package com.henu.utils;
//记录日志
public class Logger {
/**
* 前置通知
* */
public void befterPrintLog(){
System.out.println("前置通知logger开始记录日志了");
}
/**
* 后置通知
* */
public void afterReturningPrintLog(){
System.out.println("后置通知logger开始记录日志了");
}
/**
* 异常通知
* */
public void afterThrowingPrintLog(){
System.out.println("异常通知logger开始记录日志了");
}
/**
* 最终通知
* */
public void afterPrintLog(){
System.out.println("最终通知logger开始记录日志了");
} }

2、aop配置步骤(先给代码,在讲)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--配置spring的Ioc,把service对象配置起来--> <bean id="accountService" class="com.henu.service.impl.AccountServiceImpl"></bean>
<!--配置logger类 -->
<bean id="logger" class="com.henu.utils.Logger"></bean>
<!--配置AOP-->
<aop:config>
<!--配置切面表达式 id属性用于指定表达式的唯一标示。execution属性用于指定表达式内容
此标签写在aop:aspect标签内部只能当前切面使用
他还可以写在aop:aspect外面,但必须至首,全局都可以使用
-->
<aop:pointcut id="pt1" expression="execution(* com.henu.service.impl.*.*(..))"/>
<!--配置切面-->
<aop:aspect id="logAdvice" ref="logger"> <!--配置通知的类型,并且建立通知方法和切入点方法的关联-->
<!--配置前置通知:在切入点方法执行之前-->
<aop:before method="befterPrintLog" pointcut-ref="pt1"></aop:before>
<!--配置后置通知:在切入点方法正常执行之后。它与异常只执行一个-->
<aop:after-returning method="afterReturningPrintLog" pointcut-ref="pt1"></aop:after-returning>
<!--配置异常通知:在切入点方法执行产生异常之后。它与后置只执行一个-->
<aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="pt1"></aop:after-throwing>
<!--配置最终通知:无论切入点是否正常执行,它都会在其后面执行-->
<aop:after method="afterPrintLog" pointcut-ref="pt1"></aop:after> </aop:aspect>
</aop:config> </beans>

2.1、把通知类用bean标签配置起来

<!--配置logger类 -->
<bean id="logger" class="com.henu.utils.Logger"></bean>

2.2、使用aop:config声明aop配置

  aop:config:

   作用:用于声明开始 aop 的配置 

    <aop:config>

       <!--配置的代码都写在此处-->        

    </aop:config>

2.3、使用 aop:aspect 配置切面

aop:aspect:
  作用:
    用于配置切面。
  属性:
    id:给切面提供一个唯一标识。
    ref:引用配置好的通知类 bean 的 id。
<aop:aspect id="logAdvice" ref="logger">
<!--配置通知的类型要写在此处-->
</aop:aspect>

2.4、使用 aop:pointcut 配置切入点表达式

  大家看到,使用下面的方法,会使之前的代码减少很多

aop:pointcut:
作用:
用于配置切入点表达式。就是指定对哪些类的哪些方法进行增强。
属性:
expression:用于定义切入点表达式。
id:用于给切入点表达式提供一个唯一标识
<aop:pointcut id="pt1" expression="execution(* com.henu.service.impl.*.*(..))" />

2.4、使用aop:xxx配置对应的通知类型

     aop:before
作用:

  用于配置前置通知。指定增强的方法在切入点方法之前执行
属性:
  method:用于指定通知类中的增强方法名称
  ponitcut-ref:用于指定切入点的表达式的引用
   poinitcut:用于指定切入点表达式
执行时间点:
  切入点方法执行之前执行
<aop:before method="beginTransaction" pointcut-ref="pt1"/>

   aop:after-returning
作用:

  用于配置后置通知
属性:
  method:指定通知中方法的名称。
  pointct:定义切入点表达式
  pointcut-ref:指定切入点表达式的引用
执行时间点:
  切入点方法正常执行之后。它和异常通知只能有一个执行
<aop:after-returning method="commit" pointcut-ref="pt1"/>

   aop:after-throwing
作用:

  用于配置异常通知
属性:
  method:指定通知中方法的名称。
  pointct:定义切入点表达式
  pointcut-ref:指定切入点表达式的引用
执行时间点:
  切入点方法执行产生异常后执行。它和后置通知只能执行一个
<aop:after-throwing method="rollback" pointcut-ref="pt1"/>

   aop:after
作用:

  用于配置最终通知
属性:
  method:指定通知中方法的名称。
  pointct:定义切入点表达式
  pointcut-ref:指定切入点表达式的引用
执行时间点:
  无论切入点方法执行时是否有异常,它都会在其后面执行。
<aop:after method="release" pointcut-ref="pt1"/>

2.5、切入点表达式说明

execution:匹配方法的执行(常用)
execution(表达式)
表达式语法:execution([修饰符] 返回值类型 包名.类名.方法名(参数))
写法说明:
全匹配方式
  public void com.henu.service.impl.AccountServiceImpl.saveAccount()
访问修饰符可以省略
  void com.itheima.service.impl.AccountServiceImpl.saveAccount()
返回值可以使用*号,表示任意返回值
  * com.henu.service.impl.AccountServiceImpl.saveAccount()
包名可以使用*号,表示任意包,但是有几级包,需要写几个*.
  * *.*.*.*.AccountServiceImpl.saveAccount()
使用..来表示当前包,及其子包
  * com..AccountServiceImpl.saveAccount()
类名和方法名可以使用*号来实现通配
  * *..*.*()
参数列表可以使用*,表示参数可以是任意数据类型,但是必须有参数
  * com..*.*(*)
参数列表可以使用..表示有无参数均可,有参数可以是任意类型
  * com..*.*(..)
全通配方式:
  * *..*.*(..)
注:
通常情况下,我们都是对业务层的方法进行增强,所以切入点表达式都是切到业务层实现类。
execution(* com.henu.service.impl.*.*(..))

讲到这里基本都差不多了,少啥以后再补把。

基于 XML 的 AOP 配置(1)的更多相关文章

  1. 基于XML的AOP配置

    创建spring的配置文件并导入约束 此处要导入aop的约束 <?xml version="1.0" encoding="UTF-8"?> < ...

  2. spring的基于xml的AOP配置案例和切入点表达式的一些写法

    <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.spr ...

  3. 基于XML的AOP配置(2)-环绕通知

    配置方式: <aop:config> <aop:pointcut expression="execution(* com.itheima.service.impl.*.*( ...

  4. 基于XML的AOP配置-转

    http://www.cnblogs.com/yangy608/archive/2010/11/14/1876839.html AOP(Aspect-Oriented Programming,面向切面 ...

  5. Spring中AOP的基于xml开发和配置

    pom文件: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http ...

  6. Spring中基于xml的AOP

    1.Aop 全程是Aspect Oriented Programming 即面向切面编程,通过预编译方式和运行期动态代理实现程序功能的同一维护的一种技术.Aop是oop的延续,是软件开发中的 一个热点 ...

  7. Spring 框架的概述以及Spring中基于XML的IOC配置

    Spring 框架的概述以及Spring中基于XML的IOC配置 一.简介 Spring的两大核心:IOC(DI)与AOP,IOC是反转控制,DI依赖注入 特点:轻量级.依赖注入.面向切面编程.容器. ...

  8. 01Spring基于xml的IOC配置--入门

    01Spring基于xml的IOC配置 1.创建一个普通的maven工程 1.1 选择maven,不用骨架,点击下一步. 1.2 填写GroupId.ArtifactId.Version.填完点击下一 ...

  9. 面向切面编程AOP:基于XML文件的配置

    除了使用AspectJ注解声明切面,Spring也支持在bean的配置文件中声明切面,这种声明是通过aop scheme中的XML元素完成的. 首先建立一个类: package com.sevenhu ...

随机推荐

  1. Django-DRF-视图的演变(二)

    Django-DRF-视图的演变   版本一(基于类视图APIView类) views.py: APIView是继承的Django View视图的. 1 from .serializers impor ...

  2. 前后端分离-模拟数据之RAP2快速入门

    是啥? RAP是一个可视化接口管理工具 通过分析接口结构,动态生成模拟数据,校验真实接口正确性, 围绕接口定义,通过一系列自动化工具提升我们的协作效率.我们的口号:提高效率,回家吃晚饭! 可视化编辑, ...

  3. JS遍历对象和数组总结

    在日常工作过程中,我们对于javaScript遍历对象.数组的操作是十分的频繁的,今天把经常用到的方法总结一下! 一.遍历对象 1.使用Object.keys()遍历 返回一个数组,包括对象自身的(不 ...

  4. 实现表单label两端对齐

    主要使用css3属性 text-align: justify; text-align-last: justify; 上代码: <ul> <li> <label class ...

  5. 7 java 笔记

    1 方法是类或者对象行为特征的抽象,方法是类或对象最重要的组成部分 2 java里面方法的参数传递方式只有一种:值传递 值传递:就是将实际参数值的复制品传入方法内,而参数本身不会受到任何影响.(这是j ...

  6. Idea格式化快捷键无效,没反应

    Idea格式化快捷键无效,没反应 1,关闭网易云音乐快捷键 2,修改搜狗输入法快捷键 目前本人只遇到过这两种

  7. MySQL导出数据到文件中

    一.导出一张表数据 把test_time表中的数据导出成txt 文件 mysql> show global variables like '%secure%'; +--------------- ...

  8. php迭代器Iterator接口

    以前也看过迭代器Iterator接口,感觉不如yied好用,因此实际工作中并没有用到过. 今天看了一篇网上的博客(https://www.cnblogs.com/wwjchina/p/7723499. ...

  9. centos 7 源代码 mysql-5.7.2 安装

    CENTOS MYSQL 5.7 下载MySQL 5.7 https://dev.mysql.com/downloads/mysql/5.7.html#downloads cd /usr/local/ ...

  10. IPC之msgutil.c源码解读

    // SPDX-License-Identifier: GPL-2.0-or-later /* * linux/ipc/msgutil.c * Copyright (C) 1999, 2004 Man ...