在使用注解的时候,首先得在配置文件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
再次引入:
<aop:aspectj-autoproxy/>
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> <!-- 让spring容器自动生成代理 --> <aop:aspectj-autoproxy/> </beans>
MyInterceptor.java
package com.test.aop; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.springframework.stereotype.Component; @Aspect @Component public class MyInterceptor { // 切入点语法 @Before("execution(public void com.test.dao.impl.UserDAOImpl.save(com.test.model.User))") public void beforeMethod() { System.out.println("start mothod!"); } }
另一种写法
MyInterceptor2.java
package com.test.aop; import org.aspectj.lang.ProceedingJoinPoint; 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; import org.springframework.stereotype.Component; @Aspect @Component public class MyInterceptor2 { /* // 表示任何返回类型的com.test.dao以及其子包下的任何方法 @Before("execution(public * com.test.dao..*.*(..))") public void beforeMethod() { System.out.println("MyInterceptor2 before mothod!"); } @AfterReturning("execution(public * com.test.dao..*.*(..))") public void afterReturningMethod() { System.out.println("MyInterceptor2 afterReturning mothod!"); } */ //以上重复编写"execution(public * com.test.dao..*.*(..))",用以下可以进行简化 @Pointcut("execution(public * com.test.dao..*.*(..))") public void myMethod(){} @Before("myMethod()") public void beforeMethod() { System.out.println("MyInterceptor2 before mothod!"); } @AfterReturning("myMethod()") public void afterReturningMethod() { System.out.println("MyInterceptor2 afterReturning mothod!"); } @AfterThrowing("myMethod()") public void afterThrowingMethod() { System.out.println("MyInterceptor2 afterThrowing mothod!"); } @Around("myMethod()") 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; 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; import org.springframework.stereotype.Component; @Aspect @Component public class MyInterceptor3 { // 这里往service里面的方法做切入点,运行会报错,从而产生不了代理,需要引入cglib包 // 为什么? // 原因:service包里面的类没有实现接口,一个类实现了接口,它就会用JDK自带的Proxy和InvocationHandler来帮你产生代理, // 若类没有实现接口,它会直接操作二进制码的这种类库,也就是cglib来帮你产生代理,所以这里需要引入cglib包 @Pointcut("execution(public * com.test.service..*.add(..))") public void myMethod(){} @Before("myMethod()") public void beforeMethod() { System.out.println("MyInterceptor3 before mothod!"); } @AfterReturning("myMethod()") public void afterReturningMethod() { System.out.println("MyInterceptor3 afterReturning mothod!"); } @AfterThrowing("myMethod()") public void afterThrowingMethod() { System.out.println("MyInterceptor3 afterThrowing mothod!"); } @Around("myMethod()") public void aroundMethod(ProceedingJoinPoint pjp) throws Throwable { System.out.println("MyInterceptor3 around start mothod!"); pjp.proceed(); System.out.println("MyInterceptor3 around end mothod!"); } }
其他内容和“spring中Resource和Component注解”这一节一致
相关推荐
面向切面编程(AOP,Aspect Oriented Programming)是Spring框架中的一个重要特性,它提供了一种模块化和声明式的方式来处理程序中的横切关注点,如日志、事务管理、安全控制等。AOP的核心概念包括切面、通知、连接...
面向切面编程(AOP,Aspect Oriented Programming)是Spring框架中的一个重要组成部分,它提供了一种模块化和声明式的方式来处理程序中的横切关注点,如日志、事务管理、性能监控等。在传统的OOP(面向对象编程)中...
在Spring框架中,AOP(面向切面编程)是一种强大的设计模式,它允许开发者将关注点从业务逻辑中分离出来,比如日志记录、事务管理、权限检查等。`@Aspect`是Spring AOP的核心注解,用于定义一个切面。下面我们将详细...
面向切面编程(AOP)是一种编程范式,它旨在将关注点分离,使得系统中的核心业务逻辑与横切关注点(如日志、事务管理、权限检查等)解耦。Spring框架是Java开发中最流行的IoC(控制反转)和AOP容器之一,它提供了...
总的来说,"Spring_Annotation_AOP"资料将帮助你掌握如何在Spring框架中利用注解实现面向切面编程,理解AOP的核心概念和实际应用场景,从而提升你的Java开发技能。通过学习和实践,你可以更加熟练地运用Spring框架来...
面向切面编程(AOP)是一种编程范式,它允许开发者将横切关注点(如日志记录、事务管理、权限控制等)与业务逻辑分离,从而提高代码的模块化和可维护性。在Java中,AOP可以通过多种方式实现,包括Spring AOP和...
AOP(Aspect Oriented Programming,面向切面编程)是一种编程范式,旨在通过将系统中的关注点(concerns)分离出来,提高代码的可维护性和可重用性。在Java开发中,AOP通常用于日志记录、事务管理、性能监控等横切...
在Java编程领域,Spring框架是应用最广泛的轻量级开源框架之一,它提供了一系列强大的功能,包括依赖注入、面向切面编程(AOP)等。本篇将详细讲解Spring中的AOP实现,特别是JDK动态代理的应用。 首先,我们要了解...
Spring框架是Java开发中不可或缺的一部分,它以其强大的依赖注入(DI)和面向切面编程(AOP)功能而闻名。本篇文章将详细讲解如何通过XML配置实现Spring AOP的切面编程,帮助初学者理解这一核心特性。 首先,我们要...
在IT行业中,Spring AOP(面向切面编程)是一种强大的工具,它允许程序员在不修改原有业务代码的情况下,对程序进行功能增强。本实例将详细探讨如何通过注解(Annotation)来实现Spring AOP的方法拦截。 一、Spring...
在Java世界中,面向切面编程(AOP)是一种强大的设计模式,它允许程序员将关注点从核心业务逻辑中分离出来,比如日志、事务管理等。基于Annotation的AOP实现是Spring框架的一个重要特性,它极大地简化了AOP的使用。...
在Spring框架中,AOP(面向切面编程)是一种强大的设计模式,它允许开发者将关注点从业务逻辑中分离出来,比如日志记录、事务管理、权限检查等。Spring 2.0引入了基于注解的AOP配置,极大地简化了AOP的使用。这篇...
Spring AOP(面向切面编程)是Spring框架的重要组成部分,它提供了一种模块化和声明式的方式来处理系统中的交叉关注点问题,如日志、事务管理、安全性等。本示例将简要介绍如何在Spring应用中实现AOP,通过实际的...
在"微服务之SpringBoot2—降低开发复杂度之面向切面AOP.zip"的案例中,每个部分都将详细展示如何实现上述五种通知类型。通过实践这些案例,开发者可以深入理解AOP在Spring Boot中的应用,从而在实际项目中更加高效地...
在Spring框架中,AOP(面向切面编程)是一种强大的工具,它允许程序员定义横切关注点,如日志、事务管理、权限控制等,并将它们模块化为可重用的组件,避免了传统OOP中的代码重复。本文将详细介绍如何在Spring中使用...
在Spring框架中,AOP(面向切面编程)是一种强大的工具,它允许程序员在不修改原有代码的情况下,插入新的功能或行为。在Spring 3.0.5版本中,Spring扩展了对AOP的支持,特别是在处理HTTP响应时,可以通过AOP来获取`...
Spring AOP(面向切面编程)是Spring框架的重要组成部分,它提供了一种在不修改源代码的情况下,对程序进行功能增强或横切关注点(如日志、事务管理、性能监控等)注入的方式。在本Demo中,我们将深入探讨Spring AOP...
动态代理在Spring AOP(面向切面编程)中扮演着重要角色。AOP允许我们在不修改源代码的情况下,对程序进行横向切面的扩展,如日志记录、性能监控、事务管理等。Spring支持两种类型的代理:JDK动态代理和CGLIB代理。...
本篇文章将探讨Spring框架中的一个重要特性——AOP(面向切面编程)。AOP为开发者提供了在不修改源代码的情况下,对程序进行功能增强的能力,使得我们可以更方便地处理如日志记录、事务管理、权限控制等横切关注点。...