spring-aop基本配置
Posted 老邱2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-aop基本配置相关的知识,希望对你有一定的参考价值。
<bean id="syslog" class="com.SysLog"></bean>
<bean class="syslog.Syst"></bean>
<aop:config>
<!-- 切点 -->
<aop:pointcut expression="execution(* syslog..*.*(..))" id="pointcutSys"/>
<aop:aspect id="syspct" ref="syslog">
<aop:around method="doBefore" pointcut-ref="pointcutSys"/>
</aop:aspect>
</aop:config>
以上是关于spring-aop基本配置的主要内容,如果未能解决你的问题,请参考以下文章