You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.springframework.aop/src/main/java/org/springframework/aop/config/AbstractInterceptorDrivenBeanDefinitionDecorator.java
+16-15Lines changed: 16 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2006 the original author or authors.
2
+
* Copyright 2002-2010 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -34,22 +34,25 @@
34
34
importorg.springframework.util.StringUtils;
35
35
36
36
/**
37
-
* Base implementation for {@link org.springframework.beans.factory.xml.BeanDefinitionDecorator BeanDefinitionDecorators} wishing
38
-
* to add an {@link org.aopalliance.intercept.MethodInterceptor interceptor} to the resulting
* wishing to add an {@link org.aopalliance.intercept.MethodInterceptor interceptor}
40
+
* to the resulting bean.
40
41
*
41
42
* <p>This base class controls the creation of the {@link ProxyFactoryBean} bean definition
42
-
* and wraps the original as an inner-bean definition for the <code>target</code> property of
43
-
* {@link ProxyFactoryBean}.
43
+
* and wraps the original as an inner-bean definition for the <code>target</code> property
44
+
* of {@link ProxyFactoryBean}.
44
45
*
45
46
* <p>Chaining is correctly handled, ensuring that only one {@link ProxyFactoryBean} definition
46
-
* is created. If a previous {@link org.springframework.beans.factory.xml.BeanDefinitionDecorator} already created the {@link org.springframework.aop.framework.ProxyFactoryBean}
47
-
* then the interceptor is simply added to the existing definition.
47
+
* is created. If a previous {@link org.springframework.beans.factory.xml.BeanDefinitionDecorator}
48
+
* already created the {@link org.springframework.aop.framework.ProxyFactoryBean} then the
49
+
* interceptor is simply added to the existing definition.
48
50
*
49
-
* <p>Subclasses have only to create the <code>BeanDefinition</code> to the interceptor they
50
-
* wish to add.
51
+
* <p>Subclasses have only to create the <code>BeanDefinition</code> to the interceptor that
0 commit comments