|
25 | 25 | <xsd:documentation><![CDATA[
|
26 | 26 | The location of the properties file to resolve placeholders against, as a Spring
|
27 | 27 | resource location: a URL, a "classpath:" pseudo URL, or a relative file path.
|
28 |
| - Multiple locations may be specified, separated by commas. If neither location nor properties-ref is |
29 |
| - specified, placeholders will be resolved against system properties. |
| 28 | + Multiple locations may be specified, separated by commas. If neither location nor |
| 29 | + properties-ref is specified, placeholders will be resolved against system properties. |
30 | 30 | ]]></xsd:documentation>
|
31 | 31 | </xsd:annotation>
|
32 | 32 | </xsd:attribute>
|
33 | 33 | <xsd:attribute name="properties-ref" type="xsd:string">
|
34 | 34 | <xsd:annotation>
|
35 | 35 | <xsd:documentation source="java:java.util.Properties"><![CDATA[
|
36 |
| - The bean name of a Java Properties object that will be used for property substitution. |
37 |
| - If neither location nor properties-ref is specified, placeholders will be resolved against system properties. |
| 36 | + The bean name of a Properties object that will be used for property substitution. |
| 37 | + If neither location nor properties-ref is specified, placeholders will be resolved |
| 38 | + against system properties. |
38 | 39 | ]]></xsd:documentation>
|
39 | 40 | </xsd:annotation>
|
40 | 41 | </xsd:attribute>
|
41 | 42 | <xsd:attribute name="file-encoding" type="xsd:string">
|
42 | 43 | <xsd:annotation>
|
43 | 44 | <xsd:documentation><![CDATA[
|
44 |
| - Specifies the encoding to use for parsing properties files. Default is none, |
45 |
| - using the java.util.Properties default encoding. Only applies to classic |
| 45 | + Specifies the encoding to use for parsing properties files. Default is none, |
| 46 | + using the java.util.Properties default encoding. Only applies to classic |
46 | 47 | properties files, not to XML files.
|
47 | 48 | ]]></xsd:documentation>
|
48 | 49 | </xsd:annotation>
|
49 | 50 | </xsd:attribute>
|
50 | 51 | <xsd:attribute name="order" type="xsd:integer">
|
51 | 52 | <xsd:annotation>
|
52 | 53 | <xsd:documentation><![CDATA[
|
53 |
| - Specifies the order for this placeholder configurer. If more than one is present in a context |
54 |
| - the order can be important since the first one to be match a placeholder will win. Often used |
55 |
| - in conjunction with |
| 54 | + Specifies the order for this placeholder configurer. If more than one is present |
| 55 | + in a context, the order can be important since the first one to be match a |
| 56 | + placeholder will win. |
56 | 57 | ]]></xsd:documentation>
|
57 | 58 | </xsd:annotation>
|
58 | 59 | </xsd:attribute>
|
59 |
| - <xsd:attribute name="ignore-resource-not-found" type="xsd:boolean" |
60 |
| - default="false"> |
| 60 | + <xsd:attribute name="ignore-resource-not-found" type="xsd:boolean" default="false"> |
61 | 61 | <xsd:annotation>
|
62 | 62 | <xsd:documentation><![CDATA[
|
63 |
| - Specifies if failure to find the property resource location should be ignored. Default |
64 |
| - is "false", meaning that if there is no file in the location specified an exception will |
65 |
| - be raised at runtime. |
| 63 | + Specifies if failure to find the property resource location should be ignored. |
| 64 | + Default is "false", meaning that if there is no file in the location specified |
| 65 | + an exception will be raised at runtime. |
66 | 66 | ]]></xsd:documentation>
|
67 | 67 | </xsd:annotation>
|
68 | 68 | </xsd:attribute>
|
69 |
| - <xsd:attribute name="ignore-unresolvable" type="xsd:boolean" |
70 |
| - default="false"> |
| 69 | + <xsd:attribute name="ignore-unresolvable" type="xsd:boolean" default="false"> |
71 | 70 | <xsd:annotation>
|
72 | 71 | <xsd:documentation><![CDATA[
|
73 |
| - Specifies if failure to find the property value to replace a key should be ignored. Default |
74 |
| - is "false", meaning that this placeholder configurer will raise an exception if it cannot resolve |
75 |
| - a key. Set to "true" to allow the configurer to pass on the key to any others in |
76 |
| - the context that have not yet visited the key in question. |
| 72 | + Specifies if failure to find the property value to replace a key should be ignored. |
| 73 | + Default is "false", meaning that this placeholder configurer will raise an exception |
| 74 | + if it cannot resolve a key. Set to "true" to allow the configurer to pass on the key |
| 75 | + to any others in the context that have not yet visited the key in question. |
77 | 76 | ]]></xsd:documentation>
|
78 | 77 | </xsd:annotation>
|
79 | 78 | </xsd:attribute>
|
80 |
| - <xsd:attribute name="local-override" type="xsd:boolean" |
81 |
| - default="false"> |
| 79 | + <xsd:attribute name="local-override" type="xsd:boolean" default="false"> |
82 | 80 | <xsd:annotation>
|
83 | 81 | <xsd:documentation><![CDATA[
|
84 |
| - Specifies whether local properties override properties from files. Default |
85 |
| - is "false": Properties from files override local defaults. |
| 82 | + Specifies whether local properties override properties from files. |
| 83 | + Default is "false": Properties from files override local defaults. |
86 | 84 | ]]></xsd:documentation>
|
87 | 85 | </xsd:annotation>
|
88 | 86 | </xsd:attribute>
|
|
104 | 102 | traditional PropertyPlaceholderConfigurer component will be registered instead of the
|
105 | 103 | new PropertySourcesPlaceholderConfigurer.
|
106 | 104 |
|
107 |
| - See ConfigurableEnvironment Javadoc for more information on using. |
| 105 | + See ConfigurableEnvironment javadoc for more information on using. |
108 | 106 | ]]></xsd:documentation>
|
109 | 107 | <xsd:appinfo>
|
110 | 108 | <tool:annotation>
|
111 |
| - <tool:exports |
112 |
| - type="org.springframework.context.support.PropertySourcesPlaceholderConfigurer"/> |
| 109 | + <tool:exports type="org.springframework.context.support.PropertySourcesPlaceholderConfigurer"/> |
113 | 110 | </tool:annotation>
|
114 | 111 | </xsd:appinfo>
|
115 | 112 | </xsd:annotation>
|
|
130 | 127 | newer PropertySourcesPlaceholderConfigurer variant. In this case, the Spring Environment
|
131 | 128 | and its property sources are not interrogated when resolving placeholders. Users are
|
132 | 129 | encouraged to consider this attribute deprecated, and to take advantage of
|
133 |
| - Environment/PropertySource mechanisms. See ConfigurableEnvironment Javadoc for examples. |
| 130 | + Environment/PropertySource mechanisms. See ConfigurableEnvironment javadoc for examples. |
134 | 131 |
|
135 | 132 | "ENVIRONMENT" indicates placeholders should be resolved against the current Environment and against any local properties;
|
136 | 133 | "NEVER" indicates placeholders should be resolved only against local properties and never against system properties;
|
|
184 | 181 | @TransactionAttribute annotation. Consider the use of the <tx:annotation-driven>
|
185 | 182 | tag for that purpose.
|
186 | 183 |
|
187 |
| - See Javadoc for org.springframework.context.annotation.AnnotationConfigApplicationContext |
| 184 | + See javadoc for org.springframework.context.annotation.AnnotationConfigApplicationContext |
188 | 185 | for information on code-based alternatives to bootstrapping annotation-driven support.
|
189 | 186 | from XML.
|
190 | 187 | ]]></xsd:documentation>
|
|
211 | 208 | definitions just like to regular bean definitions, but it won't apply to the component
|
212 | 209 | scan settings themselves.
|
213 | 210 |
|
214 |
| - See Javadoc for org.springframework.context.annotation.ComponentScan for information |
| 211 | + See javadoc for org.springframework.context.annotation.ComponentScan for information |
215 | 212 | on code-based alternatives to bootstrapping component-scanning.
|
216 | 213 | ]]></xsd:documentation>
|
217 | 214 | </xsd:annotation>
|
|
336 | 333 | This will only happen if the AnnotationBeanConfigurerAspect is on the classpath
|
337 | 334 | (i.e. spring-aspects.jar), effectively activating "spring-configured" by default.
|
338 | 335 |
|
339 |
| - See Javadoc for org.springframework.context.annotation.EnableLoadTimeWeaving |
| 336 | + See javadoc for org.springframework.context.annotation.EnableLoadTimeWeaving |
340 | 337 | for information on code-based alternatives to bootstrapping load-time weaving support.
|
341 | 338 | ]]></xsd:documentation>
|
342 | 339 | <xsd:appinfo>
|
|
0 commit comments