You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -50,19 +50,19 @@
50
50
public @interface ConfigurationProperties {
51
51
52
52
/**
53
-
* The name prefix of the properties that are valid to bind to this object. Synonym
54
-
* for {@link #prefix()}. A valid prefix is defined by one or more words separated
55
-
* with dots (e.g. {@code "acme.system.feature"}).
56
-
* @return the name prefix of the properties to bind
53
+
* The prefix of the properties that are valid to bind to this object. Synonym for
54
+
* {@link #prefix()}. A valid prefix is defined by one or more words separated with
55
+
* dots (e.g. {@code "acme.system.feature"}).
56
+
* @return the prefix of the properties to bind
57
57
*/
58
58
@AliasFor("prefix")
59
59
Stringvalue() default"";
60
60
61
61
/**
62
-
* The name prefix of the properties that are valid to bind to this object. Synonym
63
-
* for {@link #value()}. A valid prefix is defined by one or more words separated with
62
+
* The prefix of the properties that are valid to bind to this object. Synonym for
63
+
* {@link #value()}. A valid prefix is defined by one or more words separated with
64
64
* dots (e.g. {@code "acme.system.feature"}).
65
-
* @return the name prefix of the properties to bind
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBean.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ImmutableConfigurationProperties.java
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -40,19 +40,19 @@
40
40
public @interface ImmutableConfigurationProperties {
41
41
42
42
/**
43
-
* The name prefix of the properties that are valid to bind to this object. Synonym
44
-
* for {@link #prefix()}. A valid prefix is defined by one or more words separated
45
-
* with dots (e.g. {@code "acme.system.feature"}).
46
-
* @return the name prefix of the properties to bind
43
+
* The prefix of the properties that are valid to bind to this object. Synonym for
44
+
* {@link #prefix()}. A valid prefix is defined by one or more words separated with
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/Bindable.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ public <A extends Annotation> A getAnnotation(Class<A> type) {
114
114
}
115
115
116
116
/**
117
-
* Return the constructor filter that can be used to limit the constructor that are
117
+
* Return the constructor filter that can be used to limit the constructors that are
0 commit comments