I too have this frustration. I notice that the original post here was in 2006.
If I freshly ask, could someone please give a little clue if this config should work?
Code:
<bean id="performanceMonitor" class="org.springframework.aop.interceptor.PerformanceMonitorInterceptor">
<property name="useDynamicLogger" value="true"/>
</bean>
<aop:config>
<aop:pointcut id="allMethods" expression="execution(* com.package.*.*(..))"/>
<aop:advisor pointcut-ref="allMethods" advice-ref="performanceMonitor"/>
</aop:config>
Thanks in advance,
Stewart