Skip to content

Commit

Permalink
Fix reference to CountingBeforeAdvice
Browse files Browse the repository at this point in the history
  • Loading branch information
diguage authored and snicoll committed Nov 28, 2021
1 parent d019c1f commit e209a46
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.beans.testfixture.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.beans.testfixture.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.beans.testfixture.beans.TestBean"/>

Expand Down

0 comments on commit e209a46

Please sign in to comment.