- 方法1:自己注自己
- 方法2:AspectJ:先添加依赖
<!--aspecj--> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> </dependency>
-
//获取当前的代理对象 IUserCouponService proxy=((IuserCouponService)Aopcontext.currentProxy(); //调用本类中的带有事务的方法 proxy.checkAndCreateUserCoupon(userId,coupon);