`

spring使用动态代理面向切面编程(AOP) xml

 
阅读更多

在使用注解的时候,首先得在配置文件bean.xml中添加命名空间:

xmlns:aop="http://www.springframework.org/schema/aop"

 

然后在xsi:schemaLocation中添加:

http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd

 

bean.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:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
	
	<context:component-scan base-package="com.test"></context:component-scan>
	
	<bean id="myInterceptor" class="com.test.aop.MyInterceptor"></bean>
	<bean id="myInterceptor2" class="com.test.aop.MyInterceptor2"></bean>
	<bean id="myInterceptor3" class="com.test.aop.MyInterceptor3"></bean>
	
	<aop:config>
		<aop:aspect ref="myInterceptor">
			<aop:pointcut id="myMethod" expression="execution(public void com.test.dao.impl.UserDAOImpl.save(com.test.model.User))"/>
			<aop:before method="beforeMethod" pointcut-ref="myMethod"/>
		</aop:aspect>
		<aop:aspect ref="myInterceptor2">
			<aop:pointcut id="myMethod2" expression="execution(public * com.test.dao..*.*(..))"/>
			<aop:before method="beforeMethod" pointcut-ref="myMethod2"/>
			<aop:after-returning method="afterReturningMethod" pointcut-ref="myMethod2"/>
			<aop:after-throwing method="afterThrowingMethod" pointcut-ref="myMethod2"/>
			<aop:around method="aroundMethod" pointcut-ref="myMethod2"/>
		</aop:aspect>
		<aop:aspect ref="myInterceptor3">
			<aop:pointcut id="myMethod3" expression="execution(public * com.test.service..*.add(..))"/>
			<aop:before method="beforeMethod" pointcut-ref="myMethod3"/>
			<aop:after-returning method="afterReturningMethod" pointcut-ref="myMethod3"/>
			<aop:after-throwing method="afterThrowingMethod" pointcut-ref="myMethod3"/>
			<aop:around method="aroundMethod" pointcut-ref="myMethod3"/>
		</aop:aspect>
	</aop:config>
	
</beans>

 

MyInterceptor.java

package com.test.aop;

public class MyInterceptor {
	public void beforeMethod() {
		System.out.println("start mothod!");
	}
}

 

MyInterceptor2.java

package com.test.aop;

import org.aspectj.lang.ProceedingJoinPoint;

public class MyInterceptor2 {
	
	public void beforeMethod() {
		System.out.println("MyInterceptor2 before mothod!");
	}
	
	public void afterReturningMethod() {
		System.out.println("MyInterceptor2 afterReturning mothod!");
	}
	
	public void afterThrowingMethod() {
		System.out.println("MyInterceptor2 afterThrowing mothod!");
	}
	
	public void aroundMethod(ProceedingJoinPoint pjp) throws Throwable {
		System.out.println("MyInterceptor2 around start mothod!");
		pjp.proceed();
		System.out.println("MyInterceptor2 around end mothod!");
	}
	
}

 

MyInterceptor3.java

package com.test.aop;

import org.aspectj.lang.ProceedingJoinPoint;

public class MyInterceptor3 {
	
	public void beforeMethod() {
		System.out.println("MyInterceptor3 before mothod!");
	}
	
	public void afterReturningMethod() {
		System.out.println("MyInterceptor3 afterReturning mothod!");
	}
	
	public void afterThrowingMethod() {
		System.out.println("MyInterceptor3 afterThrowing mothod!");
	}
	
	public void aroundMethod(ProceedingJoinPoint pjp) throws Throwable {
		System.out.println("MyInterceptor3 around start mothod!");
		pjp.proceed();
		System.out.println("MyInterceptor3 around end mothod!");
	}
	
}

 

分享到:
评论

相关推荐

    Spring面向切面编程AOP

    面向切面编程(AOP,Aspect Oriented Programming)是Spring框架中的一个重要特性,它提供了一种模块化和声明式的方式来处理程序中的横切关注点,如日志、事务管理、安全控制等。AOP的核心概念包括切面、通知、连接...

    AOP_使用spring框架进行面向切面编程

    面向切面编程(AOP)是一种编程范式,它旨在减少代码中的重复部分,特别是那些与核心业务逻辑无关但又必须处理的交叉关注点,如日志、事务管理、安全控制等。Spring框架是Java领域中实现AOP的常用工具,它通过提供...

    面向切面编程aop简介

    面向切面编程(AOP,Aspect Oriented Programming)是Spring框架的重要组成部分,它提供了一种在不修改原有业务代码的基础上,插入额外功能的编程模型。Spring AOP使得开发者能够更方便地实现如日志记录、事务管理、...

    spring之AOP(动态代理)

    在Spring框架中,AOP(面向切面编程)是一种强大的设计模式,它允许开发者将关注点分离,将横切关注点(如日志、事务管理、权限检查等)与核心业务逻辑解耦。AOP的核心概念是切面、通知、连接点、切入点和织入。在...

    spring AOP切面编程

    Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的重要组成部分,它扩展了传统的面向对象编程,使得开发者可以方便地实现横切关注点,如日志、事务管理、性能监控等。在Spring中,AOP通过代理...

    面向切面 aop

    面向切面编程(AOP,Aspect Oriented Programming)是一种编程范式,旨在将系统中的关注点分离,使得代码更加模块化,易于维护和扩展。在传统的面向对象编程(OOP)中,业务逻辑往往与日志、事务管理、权限控制等横...

    AOP面向切面编程总结

    ### AOP面向切面编程详解 #### 一、AOP概览 AOP(Aspect-Oriented Programming,面向切面编程)是一种编程思想和技术,它作为OOP(面向对象编程)的一种补充,主要解决了OOP在处理横切关注点方面的不足。在传统的...

    16.2 Spring框架-AOP面向切面编程

    面向切面编程(AOP,Aspect Oriented Programming)是Spring框架中的一个重要组成部分,它提供了一种模块化和声明式的方式来处理程序中的横切关注点,如日志、事务管理、性能监控等。在传统的OOP(面向对象编程)中...

    spring的aop切面编程实例

    Spring AOP(面向切面编程)是Spring框架的重要组成部分,它允许我们在不修改源代码的情况下对应用程序的行为进行统一管理和控制。在本实例中,我们将深入探讨如何使用AspectJ技术和XML配置来实现AOP。 首先,了解...

    spring4 AOP 面向切面编程@Aspect

    在Spring框架中,AOP(面向切面编程)是一种强大的设计模式,它允许开发者将关注点从业务逻辑中分离出来,比如日志记录、事务管理、权限检查等。`@Aspect`是Spring AOP的核心注解,用于定义一个切面。下面我们将详细...

    Spring框架系列(4) - 深入浅出Spring核心之面向切面编程(AOP).doc

    【Spring 框架系列(4) - 深入浅出 Spring 核心之面向切面编程(AOP)】 面向切面编程(AOP),全称为 Aspect Oriented Programming,是Spring框架的重要特性之一,用于实现代码的解耦,提高可维护性和可复用性。AOP的...

    Spring Aop面向切面的java代码

    总结一下,Spring AOP提供了JDK动态代理和CGLIB代理两种方式来实现面向切面编程,通过这两种方式,我们可以方便地在不修改原始业务代码的前提下,添加额外的功能,如日志、事务控制等。`SprigAopJdk`和`...

    基于框架的Web开发-面向切面编程AOP入门.doc

    使用Spring AOP,开发者可以通过注解或XML配置来定义切面和切入点,然后Spring会在运行时自动处理通知的插入。例如,可以创建一个`PerformanceMonitorAspect`切面,其中包含`@Before`和`@After`注解的通知,分别在...

    面向切面的编程(AOP)及在Spring中的应用

    面向切面编程(Aspect-Oriented Programming,简称AOP)是一种编程范式,它旨在将关注点分离,提高代码的可重用性和可维护性。在传统的面向对象编程(OOP)中,业务逻辑和系统服务(如日志、事务管理、安全控制等)...

    Spring框架+Spring工作原理+AOP面向切面编程+JDK代理+Cglib代理

    1. **Spring Core**:提供了Spring框架的基础,包括依赖注入(DI)和面向切面编程(AOP)的基础支持。它是所有其他模块的基础。 2. **Spring AOP**:支持面向切面编程,允许开发者定义方法拦截器和切入点,从而分离...

    spring xml 实现aop切面编程

    Spring框架是Java开发中不可或缺的一部分,它以其强大的依赖注入(DI)和面向切面编程(AOP)功能而闻名。本篇文章将详细讲解如何通过XML配置实现Spring AOP的切面编程,帮助初学者理解这一核心特性。 首先,我们要...

    第十四章面向切面编程(SpringAOP)PPT文档.pptx

    面向切面编程(AOP)是Spring框架的重要特性,它允许开发者将关注点分离,将横切关注点(如日志、事务管理、安全检查等)从核心业务逻辑中解耦出来。Spring AOP实现了Aspect Oriented Programming(面向切面编程),...

    spring aop 自定义切面示例

    在Spring AOP(面向切面编程)中,自定义切面是实现业务逻辑解耦、增强代码可维护性的重要手段。AspectJ是一个强大的面向切面的编程库,它提供了与Spring AOP集成的能力,使我们可以编写更为灵活和模块化的代码。...

Global site tag (gtag.js) - Google Analytics