|
23 | 23 | <xsd:attribute name="location" type="xsd:string"> |
24 | 24 | <xsd:annotation> |
25 | 25 | <xsd:documentation><![CDATA[ |
26 | | -The location of the properties file to resolve placeholders against, as a Spring |
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. |
| 26 | + The location of the properties file to resolve placeholders against, as a Spring |
| 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. |
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 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. |
38 | 38 | ]]></xsd:documentation> |
39 | 39 | </xsd:annotation> |
40 | 40 | </xsd:attribute> |
41 | 41 | <xsd:attribute name="file-encoding" type="xsd:string"> |
42 | 42 | <xsd:annotation> |
43 | 43 | <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 |
46 | | -properties files, not to XML files. |
| 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 |
| 46 | + properties files, not to XML files. |
47 | 47 | ]]></xsd:documentation> |
48 | 48 | </xsd:annotation> |
49 | 49 | </xsd:attribute> |
50 | 50 | <xsd:attribute name="order" type="xsd:integer"> |
51 | 51 | <xsd:annotation> |
52 | 52 | <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 |
| 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 |
56 | 56 | ]]></xsd:documentation> |
57 | 57 | </xsd:annotation> |
58 | 58 | </xsd:attribute> |
59 | 59 | <xsd:attribute name="ignore-resource-not-found" type="xsd:boolean" |
60 | 60 | 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. Default |
| 64 | + is "false", meaning that if there is no file in the location specified an exception will |
| 65 | + be raised at runtime. |
66 | 66 | ]]></xsd:documentation> |
67 | 67 | </xsd:annotation> |
68 | 68 | </xsd:attribute> |
69 | 69 | <xsd:attribute name="ignore-unresolvable" type="xsd:boolean" |
70 | 70 | default="false"> |
71 | 71 | <xsd:annotation> |
72 | 72 | <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. |
| 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. |
77 | 77 | ]]></xsd:documentation> |
78 | 78 | </xsd:annotation> |
79 | 79 | </xsd:attribute> |
80 | 80 | <xsd:attribute name="local-override" type="xsd:boolean" |
81 | 81 | default="false"> |
82 | 82 | <xsd:annotation> |
83 | 83 | <xsd:documentation><![CDATA[ |
84 | | -Specifies whether local properties override properties from files. Default |
85 | | -is "false": Properties from files override local defaults. |
| 84 | + Specifies whether local properties override properties from files. Default |
| 85 | + is "false": Properties from files override local defaults. |
86 | 86 | ]]></xsd:documentation> |
87 | 87 | </xsd:annotation> |
88 | 88 | </xsd:attribute> |
|
0 commit comments