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 Jan 12, 2019
1 parent 33cbe2e commit 92bb20c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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>
Original file line number Diff line number Diff line change
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>
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 92bb20c

Please sign in to comment.