本文连接: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. delphi FMX APP程序图标,闪屏,程序名

  2. 纯净CentOS搭建harbor镜像私仓

    物理宿主机IP:  192.168.1.4 在官网下载 CentOS-7-x86_64-DVD-1810 用Hyper-v建立一代虚机,安装时遇分辨率问题无法继续,需要在选择启动界面按TAB键以编辑启 ...

  3. Delphi CreateFile函数

  4. Scala获取main函数参数,idea演示

    1 代码示范 /** * @author zhangjin * @create 2019-06-09 11:15 */ object TestMarnArgs { def main(args: Arr ...

  5. 版本控制工具 svn 一

    一.svn 概述 1).svn的作用 1.多人协作开发:2.远程控制:3.版本控制 2).软件控制管理工具发展之路 SCM:软件配置管理,所谓的软件配置管理实际就是软件源代码的 控制与管理. CVS: ...

  6. [ZOJ 4025] King of Karaoke

    题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5766 求两个序列的相对元素的差出现次数最多的,最低出现一次. AC代 ...

  7. js excel导出功能

    <html> <head> <p style="font-size: 20px;color: red;">使用a标签方式将json导出csv文件 ...

  8. Windows安装Redis并添加本地自启动服务

    概况 在windows本地搭建redis缓存,添加到本地计算机的服务中,保证每次开机自动启动服务. 第一步:下载redis(我的是计算机win10,64位) https://github.com/Mi ...

  9. JS 函数相关的声明调用

    // 函数声明方法一 function f (a, b) { return a + b; } // 函数调用 console.log(f(1, 4)); // 函数声明方法二 var num = fu ...

  10. linux内核 同步

    锁 linux本身实现了集中锁机制,各种锁机制之间的差别是,当锁已经被其他线程持有的时候,一些锁使用自旋的方式来等待,另外一些锁会当当前线程改变为睡眠状态然后等待被唤醒. 锁的争用 如果一个锁处于高度 ...