mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-04-25 03:42:48 +00:00
moved aspect to util package
This commit is contained in:
parent
e924e8737a
commit
0a5ea0b5fb
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.aspects;
|
||||
package org.springframework.samples.petclinic.util;
|
||||
|
||||
import org.aspectj.lang.ProceedingJoinPoint;
|
||||
import org.aspectj.lang.annotation.Around;
|
|
@ -18,7 +18,7 @@
|
|||
</aop:aspectj-autoproxy>
|
||||
|
||||
<!-- Call monitoring aspect that monitors call count and call invocation time -->
|
||||
<bean id="callMonitor" class="org.springframework.samples.petclinic.aspects.CallMonitoringAspect"/>
|
||||
<bean id="callMonitor" class="org.springframework.samples.petclinic.util.CallMonitoringAspect"/>
|
||||
|
||||
<!--
|
||||
Exporter that exposes the CallMonitoringAspect via JMX,
|
||||
|
|
Loading…
Reference in a new issue