Javadoc syntax fixes

This commit is contained in:
Juergen Hoeller 2017-09-10 21:08:03 +02:00
parent f944815d92
commit c0ee1ff896
3 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ import org.springframework.core.env.ConfigurableEnvironment;
* {@code @Profile} can therefore not be used to select an overloaded method with a
* particular argument signature over another; resolution between all factory methods
* for the same bean follows Spring's constructor resolution algorithm at creation time.
* <b>Use distinct Java method names pointing to the same {@link @Bean#name bean name}
* <b>Use distinct Java method names pointing to the same {@link Bean#name bean name}
* if you'd like to define alternative beans with different profile conditions</b>;
* see {@code ProfileDatabaseConfig} in {@link Configuration @Configuration}'s javadoc.
*

View File

@ -75,7 +75,7 @@ import org.springframework.util.ReflectionUtils;
* instead. If you really need programmatic {@code #forExecutables} access, inject this class as
* a {@link ValidatorFactory} and call {@link #getValidator()} on it, then {@code #forExecutables}
* on the returned native {@link Validator} reference instead of directly on this class.
* Alternatively, call {@code #unwrap(Validator.class) which will also provide the native object.
* Alternatively, call {@code #unwrap(Validator.class)} which will also provide the native object.
*
* <p>This class is also being used by Spring's MVC configuration namespace, in case of the
* {@code javax.validation} API being present but no explicit Validator having been configured.

View File

@ -51,7 +51,7 @@ import org.springframework.validation.SmartValidator;
* <p>Note that Bean Validation 1.1's {@code #forExecutables} method isn't supported
* on this adapter: We do not expect that method to be called by application code;
* consider {@link MethodValidationInterceptor} instead. If you really need programmatic
* {@code #forExecutables} access, call {@code #unwrap(Validator.class) which will
* {@code #forExecutables} access, call {@code #unwrap(Validator.class)} which will
* provide the native {@link Validator} object with {@code #forExecutables} support.
*
* @author Juergen Hoeller