Skip to content

Commit

Permalink
fix reference of CountingBeforeAdvice
Browse files Browse the repository at this point in the history
  • Loading branch information
diguage committed Dec 11, 2019
1 parent 6e21b19 commit 9b35e77
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Expand Up @@ -16,9 +16,9 @@
</aop:aspect>
</aop:config>

<bean id="getNameCounter" class="org.springframework.aop.framework.CountingBeforeAdvice"/>
<bean id="getNameCounter" class="org.springframework.tests.aop.advice.CountingBeforeAdvice"/>

<bean id="getAgeCounter" class="org.springframework.aop.framework.CountingBeforeAdvice"/>
<bean id="getAgeCounter" class="org.springframework.tests.aop.advice.CountingBeforeAdvice"/>

<bean id="testBean" class="org.springframework.tests.sample.beans.TestBean"/>

Expand Down
Expand Up @@ -9,6 +9,6 @@
<aop:advisor advice-ref="countingAdvice" pointcut="within(org.springframework..*)"/>
</aop:config>

<bean id="countingAdvice" class="org.springframework.aop.framework.CountingBeforeAdvice"/>
<bean id="countingAdvice" class="org.springframework.tests.aop.advice.CountingBeforeAdvice"/>

</beans>
Expand Up @@ -10,6 +10,6 @@
<aop:advisor advice-ref="countingAdvice" pointcut-ref="pc"/>
</aop:config>

<bean id="countingAdvice" class="org.springframework.aop.framework.CountingBeforeAdvice"/>
<bean id="countingAdvice" class="org.springframework.tests.aop.advice.CountingBeforeAdvice"/>

</beans>
Expand Up @@ -12,7 +12,7 @@
</aop:aspect>
</aop:config>

<bean id="getAgeCounter" class="org.springframework.aop.framework.CountingBeforeAdvice"/>
<bean id="getAgeCounter" class="org.springframework.tests.aop.advice.CountingBeforeAdvice"/>

<bean id="testBean" class="org.springframework.tests.sample.beans.TestBean"/>

Expand Down
Expand Up @@ -12,7 +12,7 @@
</aop:aspect>
</aop:config>

<bean id="getAgeCounter" class="org.springframework.aop.framework.CountingBeforeAdvice"/>
<bean id="getAgeCounter" class="org.springframework.tests.aop.advice.CountingBeforeAdvice"/>

<bean id="testBean" class="org.springframework.tests.sample.beans.TestBean"/>

Expand Down

0 comments on commit 9b35e77

Please sign in to comment.