File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
spring-beans/src/main/java/org/springframework/beans/factory Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 18
18
19
19
/**
20
20
* Callback that allows a bean to be aware of the bean
21
- * {@link ClassLoader class loader}; that is, the class loader used by the
21
+ * {@link ClassLoader class loader}; that is, the class loader is used by the
22
22
* present bean factory to load bean classes.
23
23
*
24
24
* <p>This is mainly intended to be implemented by framework classes which
Original file line number Diff line number Diff line change 19
19
/**
20
20
* Interface to be implemented by beans that want to be aware of their
21
21
* bean name in a bean factory. Note that it is not usually recommended
22
- * that an object depend on its bean name, as this represents a potentially
22
+ * that an object depends on its bean name, as this represents a potentially
23
23
* brittle dependence on external configuration, as well as a possibly
24
24
* unnecessary dependence on a Spring API.
25
25
*
Original file line number Diff line number Diff line change 24
24
*
25
25
* <p>An alternative to implementing DisposableBean is specifying a custom
26
26
* destroy-method, for example in an XML bean definition.
27
- * For a list of all bean lifecycle methods, see the BeanFactory javadocs.
27
+ * For a list of all bean lifecycle methods, see the {@link BeanFactory BeanFactory javadocs} .
28
28
*
29
29
* @author Juergen Hoeller
30
30
* @since 12.08.2003
Original file line number Diff line number Diff line change 24
24
*
25
25
* <p><b>NB: A bean that implements this interface cannot be used as a
26
26
* normal bean.</b> A FactoryBean is defined in a bean style, but the
27
- * object exposed for bean references ({@link #getObject()} is always
27
+ * object exposed for bean references ({@link #getObject()}) is always
28
28
* the object that it creates.
29
29
*
30
30
* <p>FactoryBeans can support singletons and prototypes, and can
Original file line number Diff line number Diff line change 23
23
*
24
24
* <p>An alternative to implementing InitializingBean is specifying a custom
25
25
* init-method, for example in an XML bean definition.
26
- * For a list of all bean lifecycle methods, see the BeanFactory javadocs.
26
+ * For a list of all bean lifecycle methods, see the {@link BeanFactory BeanFactory javadocs} .
27
27
*
28
28
* @author Rod Johnson
29
29
* @see BeanNameAware
You can’t perform that action at this time.
0 commit comments