使用@AspectJ标签
-
在配置文件中添加<aop:aspectj-autoproxy/>注解
-
创建一个Java文件,使用@Aspect注解修饰该类
-
创建一个方法,使用@Before、@After、@Around等进行修饰,在注解中写上切入点的表达式
说明:上述Java文件创建好后,需要将其在Spring的容器中进行声明,可以在配置文件中定义<bean/>节点,也可以使用@Component组件进行修饰
示例:
-
importorg.aspectj.lang.ProceedingJoinPoint;
-
importorg.aspectj.lang.annotation.After;
-
importorg.aspectj.lang.annotation.AfterThrowing;
-
importorg.aspectj.lang.annotation.Around;
-
importorg.aspectj.lang.annotation.Aspect;
-
importorg.aspectj.lang.annotation.Before;
-
importorg.springframework.stereotype.Component;
-
-
-
-
-
-
@Component
-
@Aspect
-
publicclassAopLog{
-
-
-
@Before("execution(*com.zywang.services.impl.*.*(..))")
-
publicvoidbefore(){
-
System.out.println("before");
-
}
-
-
-
@After("execution(*com.zywang.services.impl.*.*(..))")
-
publicvoidafter(){
-
System.out.println("after");
-
}
-
-
-
@Around("execution(*com.zywang.services.impl.*.*(..))")
-
publicObjectaround(ProceedingJoinPointpoint)throwsThrowable{
-
System.out.println("beginaround");
-
Objectobject=point.proceed();
-
System.out.println("endaround");
-
returnobject;
-
}
-
-
-
@AfterThrowing(pointcut="execution(*com.zywang.services.impl.*.*(..))",throwing="ex")
-
publicvoidafterThrowing(Exceptionex){
-
System.out.println("afterThrowing");
-
System.out.println(ex);
-
}
-
}
上面这段代码中多次使用了重复的切入点,这种情况下,可以使用@Pointcut标注,来修改一个切入点方法(这个方法不需要参数和方法体),然后就可以在@Before等标注中引用该方法作为切入点,示例如下:
-
importorg.aspectj.lang.ProceedingJoinPoint;
-
importorg.aspectj.lang.annotation.Around;
-
importorg.aspectj.lang.annotation.Aspect;
-
importorg.aspectj.lang.annotation.Before;
-
importorg.aspectj.lang.annotation.Pointcut;
-
importorg.springframework.stereotype.Component;
-
-
-
-
-
-
@Component
-
@Aspect
-
publicclassAopLog{
-
-
@Pointcut("execution(*com.iflysse.school.services.impl.*.*(..))")
-
publicvoidpointcut(){}
-
-
-
@Before("pointcut()")
-
publicvoidbefore(){
-
System.out.println("before");
-
}
-
-
-
@Around("pointcut()")
-
publicObjectaround(ProceedingJoinPointpoint)throwsThrowable{
-
System.out.println("beginaround");
-
Objectobject=point.proceed();
-
System.out.println("endaround");
-
returnobject;
-
}
-
}
分享到:
相关推荐
4. **配置AOP**:在Spring 3.0中,可以使用XML配置或者注解方式来声明AOP。XML配置通过`<aop:config>`和`<aop:advisor>`等元素定义切入点和通知。注解方式则更加简洁,如`@Aspect`定义切面,`@Pointcut`定义切入点,...
在Spring 3.0中,注解的应用更加广泛,如@Controller、@Service、@Repository和@Transactional等,极大地简化了XML配置,提高了开发效率。开发者可以通过注解直接在类或方法上声明其在应用程序中的角色和行为。 3....
Spring 3.0 是一个里程碑式的版本,在Java企业级应用开发领域中占据着核心地位。这个版本的发布引入了许多新特性、改进和优化,旨在提升开发者的工作效率和应用程序的可维护性。Spring 框架以其强大的依赖注入...
在下载的"spring3.0 全部jar包"中,"dist"文件夹可能包含了所有Spring 3.0框架运行所需的库文件,包括核心容器、AOP、ORM、Web、Test等多个模块的jar包。这些jar文件是构建和运行Spring 3.0应用的基础,它们包含了...
以上只是Spring 3.0中部分关键特性和功能的概述,实际的中文帮助文档会详细解释这些概念,提供使用示例,并指导开发者如何在项目中有效地应用Spring框架。通过深入学习和实践,开发者能够充分利用Spring 3.0的优势,...
标题"Spring3.0AOP所需jar包"指的是为了在Spring 3.0及以上版本中使用AOP功能,我们需要额外添加一些jar包到项目中。这些jar包通常包括Spring AOP模块本身以及其依赖的相关库。Spring框架的每个主要模块都有对应的...
这个压缩包中的"spring3.0"文件很可能包含了所有需要的Spring 3.0框架相关的jar包,包括核心库、AOP、Web、MVC等模块的jar,是搭建Spring 3.0环境所必需的。开发者可以通过这些jar包快速构建基于Spring 3.0的应用,...
5. **XML配置简化**:Spring 3.0引入了基于注解的配置,可以减少XML配置文件的使用,使得配置更加直观和简洁。 6. **数据访问集成**:包括对JDBC、Hibernate、JPA等ORM框架的深度集成,提供统一的数据访问抽象,...
在Spring 3.0中,对依赖注入(Dependency Injection, DI)进行了优化,支持了基于注解的配置,开发者可以使用@Component、@Service、@Repository和@Controller等注解来声明bean,并通过@Autowired自动装配依赖。...
SpEL可以在配置中、AOP切点和视图层等多个地方使用,增加了灵活性。 7. **消息支持**: Spring 3.0添加了对JMS(Java Message Service)的全面支持,包括消息监听容器和模板,便于构建消息驱动的应用程序。 8. **...
1. **Bean表达式语言(Bean Expression Language, BEML)**:Spring 3.0引入了基于Groovy的表达式语言,允许在配置中进行更复杂的逻辑判断和属性设置。 2. **泛型注解支持**:Spring 3.0开始支持泛型类型的注解,使...
面向切面编程(AOP)在Spring 3.0中也得到了强化。新增的@Aspect注解使得定义切面更加直观,而@AfterReturning、@AfterThrowing等注解则方便了后置通知的编写。此外,Spring 3.0还支持了基于注解的切点表达式,让...
4. **AOP增强**:在Spring3.0中,AOP的使用更加方便,可以通过注解定义切面,减少了编写代理代码的工作。同时,增强了切点表达式(Pointcut Expression)的功能。 5. **SpringMVC**:作为Spring框架的Web层解决方案...
Spring 3.0中,AOP可以用于实现如日志记录、事务管理等功能,提高代码的复用性和可维护性。@Aspect和@Pointcut注解定义切面和切点,@Before、@After、@Around等注解定义通知行为。 八、数据绑定与验证 Spring 3.0...
3. **注解驱动开发**:Spring 3.0 大量引入了注解,如 `@Autowired`、`@Service`、`@Repository` 和 `@Controller`,这些注解简化了配置文件,使得基于 XML 的配置可以被注解替代,降低了配置复杂性。 4. **Spring ...
在Spring 3.0中,DI可以通过XML配置、注解或Java配置三种方式进行。 2. **AOP(Aspect Oriented Programming, 面向切面编程)**:Spring 3.0对AOP进行了优化,支持更多样化的切面定义,包括基于注解的切面,使得...
注解配置的增强使得代码更加简洁,降低了XML配置的复杂性。`@Component`、`@Service`、`@Repository`和`@Controller`等注解用于标记组件,而`@Autowired`则实现了依赖注入。 二、AOP(Aspect Oriented Programming...
标题 "spring3.0学习" 暗示我们要探讨的是Spring框架的一个重要版本——Spring 3.0。Spring是Java企业级应用开发中广泛使用的开源框架,它简化了依赖注入、事务管理、AOP(面向切面编程)等多个方面的工作。在Spring...
《Spring3.0与myBatis3.0整合详解》 在现代Java开发中,Spring框架因其强大的依赖注入和面向切面编程能力,已经成为企业级应用的首选。而myBatis作为一款轻量级的持久层框架,以其灵活的SQL映射和简单的对象关系...