0
私はすべての私の適用方法で実行する。このAOPを持っているが、私はそれだけでそのProfileExecutionアノテーションが付け方法で実行したい、 私は、このXML春AOP唯一の方法
<bean id="profiler" class="com.mytest.ProfilerExecution" />
<aop:config>
<aop:aspect ref="profiler">
<aop:pointcut id="serviceMethod"
expression="execution(public * *(..))" />
<aop:around pointcut-ref="serviceMethod" method="profile"/>
</aop:aspect>
</aop:config>
を使用してそれを行うことができますか
ありがとう