From 97167ce608d0788411e40712dde8072aec17d624 Mon Sep 17 00:00:00 2001 From: izeye Date: Wed, 16 Sep 2015 10:06:12 +0900 Subject: [PATCH] Polish Javadoc Closes gh-3967 --- .../boot/context/properties/ConfigurationProperties.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java b/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java index 5c34cf4b39..f37679910d 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java @@ -72,8 +72,9 @@ public @interface ConfigurationProperties { boolean ignoreUnknownFields() default true; /** - * Flag to indicate that validation errors can be swallowed. If set they will be - * logged, but not propagate to the caller. + * Flag to indicate that an exception should be raised if a Validator is + * available and validation fails. If it is set to false, validation errors will be swallowed. + * They will be logged, but not propagated to the caller. * @return the flag value (default true) */ boolean exceptionIfInvalid() default true;