欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

基于spring中的aop简单实例讲解

程序员文章站 2023-11-17 10:02:43
aop,即面向切面编程,面向切面编程的目标就是分离关注点,比如:一个骑士只需要关注守护安全,或者远征,而骑士辉煌一生的事迹由谁来记录和歌颂呢,当然不会是自己了,这个完全可以...

aop,即面向切面编程,面向切面编程的目标就是分离关注点,比如:一个骑士只需要关注守护安全,或者远征,而骑士辉煌一生的事迹由谁来记录和歌颂呢,当然不会是自己了,这个完全可以由诗人去歌颂,比如当骑士出征的时候诗人可以去欢送,当骑士英勇牺牲的时候,诗人可以写诗歌颂骑士的一生。那么骑士只需要关注怎么打仗就好了。而诗人也只需要关注写诗歌颂和欢送就好了,那么这样就把功能分离了。所以可以把诗人当成一个切面,当骑士出征的前后诗人分别负责欢送和写诗歌颂(记录)。而且,这个切面可以对多个骑士或者明人使用,并不只局限于一个骑士。这样,既分离了关注点,也减低了代码的复杂程度。

代码示例如下:

骑士类:

package com.cjh.aop2;

/**
 * @author caijh
 *
 * 2017年7月11日 下午3:53:19
 */
public class braveknight {
 public void saying(){
 system.out.println("我是骑士");
 }
}

诗人类:

package com.cjh.aop2;

/**
 * @author caijh
 *
 * 2017年7月11日 下午3:47:04
 */
public class minstrel {
 public void beforsay(){
 system.out.println("前置通知");
 }
 
 public void aftersay(){
 system.out.println("后置通知");
 }
}

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"
 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-4.3.xsd">
 <!-- 目标对象 -->
 <bean id="knight" class="com.cjh.aop2.braveknight"/>
 <!-- 切面bean -->
 <bean id="mistrel" class="com.cjh.aop2.minstrel"/>
 <!-- 面向切面编程 -->
 <aop:config>
 <aop:aspect ref="mistrel">
  <!-- 定义切点 -->
  <aop:pointcut expression="execution(* *.saying(..))" id="embark"/>
  <!-- 声明前置通知 (在切点方法被执行前调用)-->
  <aop:before method="beforsay" pointcut-ref="embark"/>
  <!-- 声明后置通知 (在切点方法被执行后调用)-->
  <aop:after method="aftersay" pointcut-ref="embark"/>
 </aop:aspect>
 </aop:config>
</beans>

测试代码:

package com.cjh.aop2;

import org.springframework.context.applicationcontext;
import org.springframework.context.support.classpathxmlapplicationcontext;

/**
 * @author caijh
 *
 * 2017年7月11日 下午4:02:04
 */
public class test {
 public static void main(string[] args) {
 applicationcontext ac = new classpathxmlapplicationcontext("com/cjh/aop2/beans.xml");
 braveknight br = (braveknight) ac.getbean("knight");
 br.saying();
 }
}

执行结果如下:

前置通知
我是骑士
后置通知

=====================================================

aop(面向切面编程)的好处就是,当执行了我们主要关注的行为(骑士类对象),也就是切点,那么切面(诗人对象)就会自动为我们进行服务,无需过多关注。如上测试代码,我们只调用了braveknight类的saying()方法,它就自己在saying方法前执行了前置通知方法,在执行完saying之后就自动执行后置通知。通过这样我们可以做权限设置和日志处理。

补充:pointcut执行方法书写格式如下

基于spring中的aop简单实例讲解

工程目录结构:

基于spring中的aop简单实例讲解

如果运行过程中出现nofoundclass的错误,一般是少了:aspectjweaver.jar这个包,需要下载

以上这篇基于spring中的aop简单实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。