added svn:externals dependency on example.aspects from org.springframework.aop

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@378 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Chris Beams 2008-12-12 01:08:48 +00:00
parent a3d6b38da8
commit 7bd805196a
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
<bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator"/> <bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator"/>
<bean class="org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactoryTests$PerTargetAspect" <bean class="example.aspects.PerTargetAspect"
scope="prototype"> scope="prototype">
<property name="order" value="5"/> <property name="order" value="5"/>
</bean> </bean>

View File

@ -5,7 +5,7 @@
<bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator"/> <bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator"/>
<bean id="aspect" class="org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactoryTests$TwoAdviceAspect"/> <bean id="aspect" class="example.aspects.TwoAdviceAspect"/>
<bean id="adrian" class="org.springframework.beans.TestBean" scope="prototype"> <bean id="adrian" class="org.springframework.beans.TestBean" scope="prototype">
<property name="name" value="adrian"/> <property name="name" value="adrian"/>

View File

@ -5,7 +5,7 @@
<bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator"/> <bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator"/>
<bean id="aspect" class="org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactoryTests$TwoAdviceAspect" <bean id="aspect" class="example.aspects.TwoAdviceAspect"
scope="prototype"/> scope="prototype"/>
<bean id="adrian" class="org.springframework.beans.TestBean" scope="prototype"> <bean id="adrian" class="org.springframework.beans.TestBean" scope="prototype">