Improve `@Lazy`'s javadoc by adding @code tag

This commit is contained in:
AlexElin 2023-02-16 09:23:52 +00:00 committed by Rossen Stoyanchev
parent 76bc7deb8e
commit 3677d3597b
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ import java.lang.annotation.Target;
*
* <p>If Lazy is present on a {@link Configuration @Configuration} class, this
* indicates that all {@code @Bean} methods within that {@code @Configuration}
* should be lazily initialized. If {@code @Lazy} is present and false on a {@code @Bean}
* should be lazily initialized. If {@code @Lazy} is present and {@code false} on a {@code @Bean}
* method within a {@code @Lazy}-annotated {@code @Configuration} class, this indicates
* overriding the 'default lazy' behavior and that the bean should be eagerly initialized.
*