1。首先基于注解配置的AOP使用:(在学习Spring的AOP之前建意先去学习一下Java的JDK动态代理和CGLIB的代理技术,AOP是基于代理实现的,JDK的动态代理需要目标对象实现一个接口,若没有实现接口则可以使用CGLIB,它的代理对象是继承目标对象。)
目标对象的接口如下:
public interface PersonService {
public abstract void save(String name);
public abstract String getPersonName(String personId);
public abstract void deletePerson(Integer id);
}
目标对象(PersonServiceImple):
public class PersonServiceImple implements PersonService {
public void save(String name) {
System.out.println("aop.annotation.service.imple.PersonServiceImple的save()方法");
// throw new RuntimeException("手动引用的一个异常信息");
}
public String getPersonName(String personId) {
// throw new RuntimeException("手动抛出的异常信息....");
return "http://zmx.iteye.com";
}
public void deletePerson(Integer id){
throw new RuntimeException("手动抛出的异常信息....");
}
}
使用Spring的注解配置一个Spring的切面
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
//@Aspect用来标示一个类为切面
@Aspect
public class MyInterceptor {
// @Pointcut用来设置一个切入点。aop.annotation.service..包(子包)内的所有类,所有方法,任何参数
@Pointcut("execution(* aop.annotation.service.imple..*.*(..))")
private void anyMethod() {
}
// 使用@Before(切入点)用来表示目标方法执行前执行的操作(前置通知)
// @Before("anyMethod()")
@Before("anyMethod() && args(nameArg)")
// 使用这个方法可以获取参数。即:在原来的切入点条件上加了另一个条件即:拦截方法的参数有一个并且是String类型
public void doBefore(String nameArg) {
System.out.println("前置通知...拦截方法执行参数:" + nameArg);
}
// 使用@AfterReturning(切入点)用来表示目标方法执行完执行的操作(后置通知)
// @AfterReturning("anyMethod()")
@AfterReturning(pointcut = "anyMethod()", returning = "returnArg")
// 使用这个方法可以获取返回结果。即:在原来的切入点条件上加了另一个条件即:拦截方法的返回值类型是String类型
public void doAfterReturning(String returnArg) {
System.out.println("后置通知...拦截方法返回结查:" + returnArg);
}
// 使用@After(切入点)用来表示目标方法执行无论是否出现异常都执行的操作(最终通知)
@After("anyMethod()")
public void doFinally() {
System.out.println("最终通知...");
}
// 使用@AfterThrowing(切入点)用来表示目标方法执行出现异常时执行的操作(例外通知)
// @AfterThrowing("anyMethod()")
@AfterThrowing(pointcut = "anyMethod()", throwing = "ex")
public void doException(Exception ex) {
System.out.println("例外通知...取获异常信息:" + ex);
}
// 使用@Around(切入点)用来表示整个通知(环绕通知:该方法必须接受一个org.aspectj.lang.ProceedingJoinPoint类型的参数)
@Around("anyMethod()")
public Object doAround(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("环绕通知之前...");
Object result = pjp.proceed();
System.out.println("环绕通知之后...");
return result;
}
}
在Spring的配置XML中打开对象上述注解的功能和向Spring容器中注册该目标对象
<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-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
<!-- 基于注解方式的声明切面 -->
<aop:aspectj-autoproxy />
<bean id="personService"
class="aop.annotation.service.imple.PersonServiceImple">
</bean>
<bean id="myInterceptor" class="aop.annotation.aspect.MyInterceptor"></bean>
</beans>
测试:
public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext("beansAOP.xml");
PersonService personService = (PersonService) ctx.getBean("personService");
//personService.save("小张");//执行参数
personService.getPersonName("mengya");//返回结果
//personService.deletePerson(123);
}
2。首先基于XML配置的AOP使用:
目标对象接口:
public interface PersonService {
public abstract void save(String name);
public abstract String getPersonName(String personId);
public void deletePerson(Integer id);
}
目标对象:
public class PersonServiceImple implements PersonService {
public void save(String name) {
System.out
.println("aop.xml.service.imple.PersonServiceImple的save()方法");
// throw new RuntimeException("手动引用的一个异常信息");
}
public String getPersonName(String personId) {
// throw new RuntimeException("手动抛出的异常信息....");
return "http://zmx.iteye.com";
}
public void deletePerson(Integer id){
throw new RuntimeException("手动抛出的异常信息....");
}
}
Spring的切面对象:
public class MyInterceptor {
public void doBefore() {
System.out.println("前置通知...");
}
public void doAfterReturning(String returnArg) {
System.out.println("后置通知...拦截方法返回结查:" + returnArg);
}
public void doFinally() {
System.out.println("最终通知...");
}
public void doException(Exception ex) {
System.out.println("例外通知...取获异常信息:" + ex);
}
public Object doAround(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("环绕通知之前...");
Object[] args = pjp.getArgs();
for (int i = 0; i < args.length; i++) {
System.out.println(args);
}
Object result = pjp.proceed();
System.out.println("环绕通知之后...");
return result;
}
}
在XML配置上述内容:
<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-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
<bean id="personService"
class="aop.xml.service.imple.PersonServiceImple">
</bean>
<bean id="myInterceptor" class="aop.xml.aspect.MyInterceptor"></bean>
<!-- AOP配置 -->
<aop:config>
<!-- 切面 -->
<aop:aspect id="myAspect" ref="myInterceptor">
<aop:pointcut id="myAnyMethod"
expression="execution(* aop.xml.service.imple.*.*(..))" />
<aop:before pointcut-ref="myAnyMethod" method="doBefore"/>
<aop:after-returning method="doAfterReturning" pointcut-ref="myAnyMethod" returning="returnArg"/>
<aop:after-throwing method="doException" pointcut-ref="myAnyMethod" throwing="ex"/>
<aop:after method="doFinally" pointcut-ref="myAnyMethod"/>
<aop:around method="doAround" pointcut-ref="myAnyMethod"/>
</aop:aspect>
</aop:config>
</beans>
测试:
public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext(
"beansAOP2.xml");
PersonService personService = (PersonService) ctx.getBean("personService");
// personService.save("AOP");
personService.getPersonName("123");
}
分享到:
相关推荐
使用`<aop:before>`、`<aop:after>`、`<aop:after-returning>`、`<aop:after-throwing>`和`<aop:around>`元素定义不同类型的的通知,例如: ```xml <aop:aspect id="loggingAspect" ref="loggingAspectBean"> <aop...
3. `<aop:before>`、`<aop:after>`、`<aop:around>`、`<aop:after-returning>`和`<aop:after-throwing>`:这些元素分别用于定义前置通知、后置通知、环绕通知、返回后通知和异常后通知。 4. `<aop:pointcut>`:定义...
本教程将探讨如何在Spring中结合AspectJ实现AOP,包括基于XML配置和基于注解的方式。 **一、AOP基本概念** AOP的核心概念有切面(Aspect)、连接点(Join Point)、通知(Advice)、切点(Pointcut)和引入...
在Spring框架中,AOP的实现有两种主要方式:一种是基于XML配置,另一种是基于注解。本篇将主要讨论如何通过注解方式来实现AOP编程。 首先,我们需要了解Spring中的核心注解。`@Aspect`是定义一个切面的注解,通常会...
Spring框架(基于xml、基于注解、AOP面相切面、事务)思维导图
在Spring AOP中,你可以使用`<aop:pointcut>`定义切点,通过表达式指定匹配的类和方法。例如: ```xml <aop:pointcut id="serviceMethods" expression="execution(* com.example.service.*.*(..))"/> ``` 这个...
在Java开发领域,Spring框架是不可或缺的一部分,尤其在企业级应用中广泛使用。Spring AOP(面向切面编程)提供了一种优雅的方式来处理系统中的横切关注点,如日志、事务管理等。本篇文章将深入探讨如何在Spring中...
在基于XML的配置方式下,Spring AOP提供了直观且灵活的声明式方法来实现这些关注点的分离,使得业务逻辑代码更为简洁。 在Spring AOP中,我们首先需要定义一个切面(Aspect),它包含了若干个通知(Advice)。通知...
在XML配置中,我们添加 `<aop:aspectj-autoproxy>` 或在Java配置中使用 `@EnableAspectJAutoProxy` 注解。 ```xml <aop:aspectj-autoproxy /> ``` 或 ```java @Configuration @EnableAspectJAutoProxy public class...
1. **启用AOP代理**:在Spring配置文件中,通过<aop:aspectj-autoproxy/>元素启用基于注解的AOP。 ```xml <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi=...
4. **启动注解支持**:在Spring配置文件中启用基于注解的AOP支持,使用`<aop:aspectj-autoproxy/>`。 ### 总结 无论是基于XML的AOP配置还是基于注解的AOP配置,其核心都是将横切关注点从业务逻辑中分离出来,从而...
在XML配置中,我们可以使用`<aop:before>`、`<aop:after>`、`<aop:after-returning>`、`<aop:after-throwing>`和`<aop:around>`标签来定义不同类型的通知。 连接点(Join Point)是通知插入到应用程序中的位置,...
实验主题涉及Spring AOP(面向切面编程)的两种实现方式——基于XML配置和基于注解的编程,用于模拟银行账户的存钱和取钱操作。AOP的主要目的是分离关注点,将业务逻辑与横切关注点(如日志、事务管理等)解耦。 一...
在Spring框架中,注解和XML配置是两种主要的方式来实现面向切面编程(Aspect-Oriented Programming,简称AOP)。AOP是一种编程范式,它允许程序员定义“切面”,这些切面封装了关注点,如日志、事务管理、性能监控等...
- **XML配置**:在Spring的配置文件中,可以使用<aop:config>标签来定义切面,<aop:pointcut>定义切点,<aop:advisor>定义通知,<aop:aspect>将切点和通知关联起来。 - **注解配置**:Spring 2.5引入了基于注解的...
在学习过程中,您可以参考压缩包中的`springAOP`文件,其中可能包含示例代码和详细的步骤解释,帮助您更好地理解和实践这些概念。动手实践是掌握Spring AOP的最好方式,通过创建自己的切面和通知,您将能够深入理解...
在Spring中,AOP主要分为两种实现方式:基于XML配置和基于注解。本示例主要探讨注解方式。 1. **定义切面(Aspect)** 切面是关注点的模块化,它包含通知(Advice)和切入点(Pointcut)。在Spring中,我们可以...
1. **XML配置**:在`<aop:config>`标签中定义切面,`<aop:advisor>`定义通知,`<aop:pointcut>`定义切入点。 2. **注解驱动**:使用`@Aspect`注解声明切面类,`@Before`、`@After`、`@Around`、`@AfterReturning`、...
在本文中,我们将深入探讨Spring框架中的Bean XML配置,这是Spring的核心特性之一,它允许我们定义、管理和装配应用中的对象。我们将围绕以下知识点展开: 1. **Spring框架基础**: Spring是一个开源的Java平台,...
本篇将通过注解方式探讨如何在Spring中实现AOP,基于提供的资源,我们可以看到一个实际的Demo项目结构。 首先,我们来看项目的基本结构: 1. `bin`目录:编译后的Java类文件会放在这里。 2. `.settings`目录:包含...