Javadoc syntax fixes
This commit is contained in:
parent
f944815d92
commit
c0ee1ff896
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue