我正在尝试在我的 spring 应用程序中使用 Jamon,但我没有看到任何消息,这是我对 jamon 的 context.xml 定义。
<bean id="jamonMonitoringAspectInterceptor" class="org.springframework.aop.interceptor.JamonPerformanceMonitorInterceptor">
<property name="loggerName" value="JamonLogger"/>
<property name="trackAllInvocations" value="true"></property>
<property name="useDynamicLogger" value="true"></property>
</bean>
<aop:config>
<aop:pointcut id="jamonMonitoringPointcut"
expression="execution(* com.myorg.somepack.networkapi.websocket.WebSocketService.*(..))"/>
<aop:advisor pointcut-ref="jamonMonitoringPointcut"
advice-ref="jamonMonitoringAspectInterceptor"/>
</aop:config>
我没有任何异常,一切正常,但我没有看到 jamon 工作。