了解Spring Aspectj创建动态代理

2024-05-06 21:58

本文主要是介绍了解Spring Aspectj创建动态代理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Demo介绍, King和Queen两人都要专心做自己的工作,但是整理床铺,穿衣服,吃饭等锁事不想自己弄,于是喊了四个侍女(Servant)来照顾;

非配置方式

动态代理一:代理人安排King,Queen,Servant的事项顺序;

1.King和Queen对象

        public interface KingInterface {public void dowork();}
    @Component("king")public class King implements KingInterface{@Overridepublic void dowork() {System.out.println("King doing!");}}
    public interface QueenInterface {public void dowork();}
    import org.springframework.stereotype.Component;@Component("queen")public class Queen implements QueenInterface {public void dowork(){System.out.println("queen doing....");}}

2.创建侍女对象

import org.springframework.stereotype.Component;@Component("servant01")
public class Servant01{public void makeBeds1(){System.out.println("makeBeds1");}public void makeBeds2(){System.out.println("makeBeds2");}
}
import org.springframework.stereotype.Component;@Component("servant02")
public class Servant02{public void dress(){System.out.println("dress");}
}
import org.springframework.stereotype.Component;@Component("servant03")
public class Servant03{public void haveAMeal1(){System.out.println("haveAMeal1");}public void haveAMeal2(){System.out.println("haveAMeal2");}
}
import org.springframework.stereotype.Component;@Component("servant04")
public class Servant04{public void undress(){System.out.println("undress");}
}

3.创建代理人

@Aspect
@Component
public class DynamicProxyFactory{@Resourceprivate Servant01 servant01;@Resourceprivate Servant02 servant02;@Resourceprivate Servant03 servant03;@Resourceprivate Servant04 servant04;@Before("execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")public void before() {servant01.makeBeds1();servant02.dress();servant03.haveAMeal1();}@After("execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")public void after(){servant03.haveAMeal2();servant01.makeBeds2();servant04.undress();}}

4.ApplicationContext.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"xmlns:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-3.0.xsd"><!-- 启用注解注入 --><context:annotation-config/><!-- 启用组件扫描 --><context:component-scan base-package="cn.com.xalead"/><!-- 启用aspectJ --><aop:aspectj-autoproxy/>
</beans>
动态代理二:Servant主动在King,Queen需要时做事;

1.King和Queen对象, 同上;
2.创建侍女对象

import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.core.Ordered;
import org.springframework.stereotype.Component;
@Aspect
@Component("servant01")
public class Servant01 implements Ordered{@Before("execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")public void makeBeds1(){System.out.println("makeBeds1");}@After("execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")public void makeBeds2(){System.out.println("makeBeds2");}@Overridepublic int getOrder() {return 1;}
}
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.core.Ordered;
import org.springframework.stereotype.Component;
@Aspect
@Component("servant02")
public class Servant02 implements Ordered{@Before("execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")public void dress(){System.out.println("dress");}@Overridepublic int getOrder() {return 2;}
}
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.core.Ordered;
import org.springframework.stereotype.Component;
@Aspect
@Component("servant03")
public class Servant03 implements Ordered{@Before("execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")public void haveAMeal1(){System.out.println("haveAMeal1");}@After("execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")public void haveAMeal2(){System.out.println("haveAMeal2");}@Overridepublic int getOrder() {return 3;}
}
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.core.Ordered;
import org.springframework.stereotype.Component;
@Aspect
@Component("servant04")
public class Servant04 implements Ordered{@After("execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")public void undress(){System.out.println("undress");}@Overridepublic int getOrder() {return 0;}
}

3.ApplicationContext.xml同上

配置方式

1.King和Queen对象, 同上;
2.创建侍女对象

import org.springframework.stereotype.Component;
@Component("servant01")
public class Servant01{public void makeBeds(){System.out.println("makeBeds");}
}
import org.springframework.stereotype.Component;
@Component("servant02")
public class Servant02{public void dress(){System.out.println("dress");}
}
import org.springframework.stereotype.Component;
@Component("servant03")
public class Servant03{public void haveAMeal(){System.out.println("haveAMeal");}
}
import org.springframework.stereotype.Component;
@Component("servant04")
public class Servant04{public void undress(){System.out.println("undress");}
}

3.ApplicationContext.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"xmlns:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-3.0.xsd"><!-- 启用注解注入 --><context:annotation-config/><!-- 启用组件扫描 --><context:component-scan base-package="cn.com.xalead"/><aop:config><aop:pointcut expression="execution(* cn.com.xalead.spring.QueenInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))" id="allMethod"/><aop:aspect ref="servant01"><aop:before method="makeBeds" pointcut-ref="allMethod"/></aop:aspect><aop:aspect ref="servant02"><aop:before method="dress" pointcut-ref="allMethod"/></aop:aspect><aop:aspect ref="servant03"><aop:before method="haveAMeal" pointcut-ref="allMethod"/></aop:aspect><aop:aspect ref="servant03"><aop:after method="haveAMeal" pointcut-ref="allMethod"/></aop:aspect><aop:aspect ref="servant01"><aop:after method="makeBeds" pointcut-ref="allMethod"/></aop:aspect><aop:aspect ref="servant04"><aop:after method="undress" pointcut-ref="allMethod"/></aop:aspect></aop:config>
</beans>

测试运行代码

import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import junit.framework.TestCase;public class Test extends TestCase{public void test1(){BeanFactory factory = new ClassPathXmlApplicationContext("app*.xml");QueenInterface queen = (QueenInterface)factory.getBean("queen");queen.dowork();System.out.println("----------------------------------------------");KingInterface king = (KingInterface)factory.getBean("king");king.dowork();}
}

附: jar包目录图

这篇关于了解Spring Aspectj创建动态代理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/965488

相关文章

JSON字符串转成java的Map对象详细步骤

《JSON字符串转成java的Map对象详细步骤》:本文主要介绍如何将JSON字符串转换为Java对象的步骤,包括定义Element类、使用Jackson库解析JSON和添加依赖,文中通过代码介绍... 目录步骤 1: 定义 Element 类步骤 2: 使用 Jackson 库解析 jsON步骤 3: 添

Java中注解与元数据示例详解

《Java中注解与元数据示例详解》Java注解和元数据是编程中重要的概念,用于描述程序元素的属性和用途,:本文主要介绍Java中注解与元数据的相关资料,文中通过代码介绍的非常详细,需要的朋友可以参... 目录一、引言二、元数据的概念2.1 定义2.2 作用三、Java 注解的基础3.1 注解的定义3.2 内

Java中使用Java Mail实现邮件服务功能示例

《Java中使用JavaMail实现邮件服务功能示例》:本文主要介绍Java中使用JavaMail实现邮件服务功能的相关资料,文章还提供了一个发送邮件的示例代码,包括创建参数类、邮件类和执行结... 目录前言一、历史背景二编程、pom依赖三、API说明(一)Session (会话)(二)Message编程客

Java中List转Map的几种具体实现方式和特点

《Java中List转Map的几种具体实现方式和特点》:本文主要介绍几种常用的List转Map的方式,包括使用for循环遍历、Java8StreamAPI、ApacheCommonsCollect... 目录前言1、使用for循环遍历:2、Java8 Stream API:3、Apache Commons

JavaScript中的isTrusted属性及其应用场景详解

《JavaScript中的isTrusted属性及其应用场景详解》在现代Web开发中,JavaScript是构建交互式应用的核心语言,随着前端技术的不断发展,开发者需要处理越来越多的复杂场景,例如事件... 目录引言一、问题背景二、isTrusted 属性的来源与作用1. isTrusted 的定义2. 为

Java循环创建对象内存溢出的解决方法

《Java循环创建对象内存溢出的解决方法》在Java中,如果在循环中不当地创建大量对象而不及时释放内存,很容易导致内存溢出(OutOfMemoryError),所以本文给大家介绍了Java循环创建对象... 目录问题1. 解决方案2. 示例代码2.1 原始版本(可能导致内存溢出)2.2 修改后的版本问题在

MySQL分表自动化创建的实现方案

《MySQL分表自动化创建的实现方案》在数据库应用场景中,随着数据量的不断增长,单表存储数据可能会面临性能瓶颈,例如查询、插入、更新等操作的效率会逐渐降低,分表是一种有效的优化策略,它将数据分散存储在... 目录一、项目目的二、实现过程(一)mysql 事件调度器结合存储过程方式1. 开启事件调度器2. 创

Java CompletableFuture如何实现超时功能

《JavaCompletableFuture如何实现超时功能》:本文主要介绍实现超时功能的基本思路以及CompletableFuture(之后简称CF)是如何通过代码实现超时功能的,需要的... 目录基本思路CompletableFuture 的实现1. 基本实现流程2. 静态条件分析3. 内存泄露 bug

Java中Object类的常用方法小结

《Java中Object类的常用方法小结》JavaObject类是所有类的父类,位于java.lang包中,本文为大家整理了一些Object类的常用方法,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. public boolean equals(Object obj)2. public int ha

SpringBoot项目中Maven剔除无用Jar引用的最佳实践

《SpringBoot项目中Maven剔除无用Jar引用的最佳实践》在SpringBoot项目开发中,Maven是最常用的构建工具之一,通过Maven,我们可以轻松地管理项目所需的依赖,而,... 目录1、引言2、Maven 依赖管理的基础概念2.1 什么是 Maven 依赖2.2 Maven 的依赖传递机