Spring aop 简单示例
Posted 流转的岁月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring aop 简单示例相关的知识,希望对你有一定的参考价值。
package com.yangxin.core.transaction; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.AfterReturning; 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 public class TransactionDemo2 { //定义切面 @Pointcut(value="execution(* com.yangxin.core.service.*.*.*(..))") public void point(){ } @Before(value="point()") public void before(){ System.out.println("transaction begin"); } //把切点和通知关联起来 @AfterReturning(value = "point()") public void after(){ System.out.println("transaction commit"); } @Around("point()") public void around(ProceedingJoinPoint joinPoint) throws Throwable{ System.out.println("transaction begin"); joinPoint.proceed(); System.out.println("transaction commit"); } }
参考: https://www.cnblogs.com/cndota/p/6129244.html
以上是关于Spring aop 简单示例的主要内容,如果未能解决你的问题,请参考以下文章