<aop:config> <!--第二种方式:使用AOP的标签实现--> <aop:aspect ref="diy"> <aop:pointcut id="diyPointCut" expression="execution(* com.xian.service.UserServiceImpl.*(..))"/> <aop:before pointcut-ref="diyPointCut" method="before"></aop:before> <aop:after pointcut-ref="diyPointCut" me...