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: spring-beans/src/main/java/org/springframework/beans/factory/support/MergedBeanDefinitionPostProcessor.java
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2008 the original author or authors.
2
+
* Copyright 2002-2016 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.
@@ -20,20 +20,20 @@
20
20
21
21
/**
22
22
* Post-processor callback interface for <i>merged</i> bean definitions at runtime.
23
-
* {@link BeanPostProcessor} implementations may implement this sub-interface in
24
-
* order to post-process the merged bean definition that the Spring BeanFactory
25
-
* uses to create a specific bean instance.
23
+
* {@link BeanPostProcessor} implementations may implement this sub-interface in order
24
+
* to post-process the merged bean definition (a processed copy of the original bean
25
+
* definition) that the Spring {@code BeanFactory} uses to create a bean instance.
26
26
*
27
27
* <p>The {@link #postProcessMergedBeanDefinition} method may for example introspect
28
28
* the bean definition in order to prepare some cached metadata before post-processing
29
-
* actual instances of a bean. It is also allowed to modify the bean definition
30
-
* but <i>only</i> for bean definition properties which are actually intended
31
-
* for concurrent modification. Basically, this only applies to operations
32
-
* defined on the {@link RootBeanDefinition} itself but not to the properties
33
-
* of its base classes.
29
+
* actual instances of a bean. It is also allowed to modify the bean definition but
30
+
* <i>only</i> for definition properties which are actually intended for concurrent
31
+
* modification. Essentially, this only applies to operations defined on the
32
+
* {@link RootBeanDefinition} itself but not to the properties of its base classes.
0 commit comments