<!--配置目标类-->
<bean id="target" class="com.xinzhi.target.impl.TargetImpl"/>
<!--配置切面类-->
<bean id="aspect" class="com.xinzhi.aspect.MyAspect"/>
<!--配置织入关系-->
<aop:config>
<aop:aspect ref="aspect">
<aop:before method="before" pointcut="execution(* com.xinzhi.target.impl.*.*(..))"/>
<aop:after method="after" pointcut="execution(* com.xinzhi.target.impl.*.*(..))"/>
<aop:around method="around" pointcut="execution(* com.xinzhi.target.impl.*.*(..))"/>
</aop:aspect>
</aop:config>