67,549
社区成员




<aop:aspectj-autoproxy/>
<bean id="myBefore" class="com.test.aop.GetStartEnd"></bean>
<aop:config>
<aop:aspect id="abcd" ref="myBefore">
<!-- <aop:pointcut id="myPointcut" expression="execution(* com.abc.ebook.service.impl.*.*(..))"/> -->
<aop:pointcut id="myPointcut" expression="execution(* com.abc.ebook.dao.impl.*.*(..))"/>
<aop:before pointcut-ref="myPointcut" method="aa"/>
<aop:after pointcut-ref="myPointcut" method="bb"/>
</aop:aspect>
</aop:config>