基于注解的AOP配置
2020-04-18 16:04:39来源:博客园 阅读 ()
基于注解的AOP配置
基于注解的AOP配置(一定要要参考上一篇的“基于xml文件的AOP配置”)
-
主要是将上面的xml文件的内容替换掉,以下是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.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <bean id="wordsService" class="com.mypro.service.impl.WordsServiceImpl"></bean> <bean id="logger" class="com.mypro.service.impl.WordsServiceImpl"></bean> <aop:config> <aop:aspect id="loggerAdvice" ref="logger"> <aop:pointcut id="pt1" expression="execution(* com.mypro.service.impl.*.*(..))"></aop:point> <aop:before method="beforeInfo" pointcut-ref="pt1"></aop:before> <aop:after-returning method="afterReturningInfo" pointcut-ref="pt1"></aop:after-returning> <aop:after-throwing method="afterThrowingInfo" pointcut-ref="pt1"></aop:after-throwing> <aop:after method="afterInfo" pointcut-ref="pt1"></aop:after> </aop:aspect> </aop:config> </beans>
-
首先我们需要配置我们扫描的包,将xml文件的Bean对象替换成注解,即在我们实现类上方添加注解。在此之前,还需要添加xmlns:context依赖
<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:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!-- 代替xml文件的两个Bean对象的配置 --> <context:component-scan base-package="com.mypro"></context:component-scan> </beans>
-
开启Spring支持的AOP配置
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
-
修改通知类的代码,注意实现五种通知标签的功能
package com.mypro.utils; ? import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.*; import org.springframework.stereotype.Component; ? /** * 用于记录日志的工具类,里面提供公共的代码 */ // 代替xml文件的<aop:config><aop:aspect id="loggerAdvice" ref="logger"></aop:aspect></aop:config> @Component("logger") @Aspect public class Logger { // 代替切入点的配置 @Pointcut("execution(* com.mypro.service.impl.*.*(..))") public void pt1(){} ? @Before("pt1()") public void beforeInfo(){ System.out.println("前置通知"); } @AfterReturning("pt1()") public void totalInfo(){ System.out.println("后置通知"); } @AfterThrowing("pt1()") public void expectInfo(){ System.out.println("异常通知"); } @After("pt1()") public void afterInfo(){ System.out.println("最终通知"); } @Around("pt1()") public Object aroundInfo(){ Object rtValue = null; try{ System.out.println("前置通知"); // 得到方法执行时所需的参数 Object[] args = pjp.getArgs(); // 明确调用业务层方法(切入点方法) rtValue = pjp.proceed(args); System.out.println("后置通知"); return rtValue; }catch(Throwable t){ // 必须是用Throwable捕捉异常 System.out.println("异常通知"); throw new RuntimeException(t); }finally{ System.out.println("最终通知"); } } ? } ?
原文链接:https://www.cnblogs.com/aitiknowledge/p/12713143.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:Nacos入门
- Java--注解 2020-06-11
- Java 必须掌握的 12 种 Spring 常用注解! 2020-06-08
- Spring10_AOP 2020-06-04
- JAVA自定义注解 2020-06-01
- 基于数据库的代码自动生成工具,生成JavaBean、生成数据库文 2020-05-31
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash