diff --git a/spring-framework-reference/src/aop.xml b/spring-framework-reference/src/aop.xml
index 76ccf963e61..62bf969ee41 100644
--- a/spring-framework-reference/src/aop.xml
+++ b/spring-framework-reference/src/aop.xml
@@ -391,7 +391,20 @@ public class NotVeryUsefulAspect {
introduction (inter-type) declarations.
- Advising aspects
+ Autodetecting aspects through component scanning
+
+ You may register aspect classes as regular beans in your Spring
+ XML configuration, or autodetect them throuch classpath scanning -
+ just like any other Spring-managed bean. However, note that the
+ @Aspect annotation is not
+ sufficient for autodetection in the classpath: For that purpose,
+ you need to add a separate @Component annotation
+ (or alternatively a custom stereotype annotation that qualifies,
+ as per the rules of Spring's component scanner).
+
+
+
+ Advising aspects with other aspects?
In Spring AOP, it is not possible to have
aspects themselves be the target of advice from other aspects. The