-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathspring-configuration-metadata.json
289 lines (287 loc) · 10.1 KB
/
spring-configuration-metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
{"groups": [
{
"name": "r2dbc.migrate",
"type": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
}
],"properties": [
{
"name": "r2dbc.migrate.enable",
"type": "boolean",
"description": "Enable or disable migrations",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.resources",
"type": "java.util.List<name.nkonev.r2dbc.migrate.core.BunchOfResourcesEntry>",
"description": "List of entries, containing paths to migrations. Internally uses \"PathMatchingResourcePatternResolver\" so it should starts from \"file:\" or \"classpath:\" prefix",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.resources-path",
"type": "java.lang.String",
"description": "Shortcut to r2dbc.migrate.resources with type CONVENTIONALLY_NAMED_FILES. Internally uses \"PathMatchingResourcePatternResolver\" so it should starts from \"file:\" or \"classpath:\" prefix",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.dialect",
"type": "name.nkonev.r2dbc.migrate.core.Dialect",
"description": "Optional database dialect",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.connection-max-retries",
"type": "long",
"description": "Count of retries to connect to database. r2dbc-migrate will retry with fixed interval \"validation-retry-delay\"",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.validation-retry-delay",
"type": "java.time.Duration",
"description": "Delay between trying to get success of validation \"validation-query\"",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.validation-query-timeout",
"type": "java.time.Duration",
"description": "Timeout for \"validation-query\"",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.validation-query",
"type": "java.lang.String",
"description": "Query that used for connection's validation",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.validation-query-expected-result-value",
"type": "java.lang.String",
"description": "If set then \"result\" column of validation-query will be used to compare with",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.chunk-size",
"type": "int",
"description": "Number of lines which will be passed as batch to the connection. Used with \"splitted\" modifier.",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.file-charset",
"type": "java.nio.charset.Charset",
"description": "Charset used to read file.",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.acquire-lock-retry-delay",
"type": "java.time.Duration",
"description": "Delay between retries to acquire lock",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.acquire-lock-max-retries",
"type": "long",
"description": "Count of retries to acquire lock from \"migrations_lock\" table",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.wait-for-database",
"type": "boolean",
"description": "Should we wait for database has been started ? See alse r2dbc.migrate.validation-query",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.migrations-table",
"type": "java.lang.String",
"description": "Changes migration table name. It will be written with corresponding wrapping (quotes in case PostgreSQL, backticks in case MySQL).",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.migrations-lock-table",
"type": "java.lang.String",
"description": "Changes migration lock table name. It will be written with corresponding wrapping (quotes in case PostgreSQL, backticks in case MySQL). In case prefer-db-specific-lock it's recommended to set the different migrations-lock-table if several migrators (e. g. microservices) use the same database",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.migrations-schema",
"type": "java.lang.String",
"description": "Changes migration schema. It will be written with corresponding wrapping (quotes in case PostgreSQL, backticks in case MySQL). Default is null - it means that database's default will be selected (\"public\" for PostgreSQL, \"dbo\" for MsSQL).",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.prefer-db-specific-lock",
"type": "boolean",
"description": "Use db-specific (advisory lock for PostgreSQL, session lock for MySQL and MariaDB) instead of lock table.",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.use-environment-substitutor",
"type": "boolean",
"description": "Use EnvironmentSubstitutor from commons-text to substitute `${mystring}` in SQL. Requires enablement `substitute` in the particular BunchOfResourcesEntry.",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
},
{
"name": "r2dbc.migrate.use-system-properties-substitutor",
"type": "boolean",
"description": "Use eSystemPropertiesSubstitutor from commons-text to substitute `${mystring}` in SQL. Requires enablement `substitute` in the particular BunchOfResourcesEntry.",
"sourceType": "name.nkonev.r2dbc.migrate.autoconfigure.R2dbcMigrateAutoConfiguration$SpringBootR2dbcMigrateProperties"
}
],"hints": [
{
"name": "r2dbc.migrate.enable",
"values": [
{
"value": "true",
"description": "Enable migrations."
},
{
"value": "false",
"description": "Disable migrations."
}
]
},
{
"name": "r2dbc.migrate.resources-path",
"values": [
{
"value": "classpath:/db/migration/*.sql",
"description": "Classpath example."
},
{
"value": "file:/opt/migration/*.sql",
"description": "Filesystem example."
}
],
"providers": [
{
"name": "any"
}
]
},
{
"name": "r2dbc.migrate.dialect",
"values": [
{
"value": "postgresql",
"description": "PostgreSQL dialect."
},
{
"value": "mssql",
"description": "Microsoft SQL Server dialect."
},
{
"value": "mysql",
"description": "MySQL dialect."
},
{
"value": "h2",
"description": "h2 dialect."
},
{
"value": "mariadb",
"description": "MariaDB dialect."
}
]
},
{
"name": "r2dbc.migrate.validation-query",
"values": [
{
"value": "select 'super value' as result",
"description": "PostgreSQL connection check with result column."
},
{
"value": "SELECT collation_name as result FROM sys.databases WHERE name = N'master'",
"description": "Checks that Microsoft SQL Server configuration completed and collation_name is set."
}
],
"providers": [
{
"name": "any"
}
]
},
{
"name": "r2dbc.migrate.validation-query-expected-result-value",
"values": [
{
"value": "super value",
"description": "Example of expected value for PostgreSQL connection check."
},
{
"value": "Cyrillic_General_CI_AS",
"description": "Example of expected value for Microsoft SQL Server."
}
],
"providers": [
{
"name": "any"
}
]
},
{
"name": "r2dbc.migrate.file-charset",
"values": [
{
"value": "UTF-8",
"description": "Charset example."
}
],
"providers": [
{
"name": "any"
}
]
},
{
"name": "r2dbc.migrate.wait-for-database",
"values": [
{
"value": "true",
"description": "Enable"
},
{
"value": "false",
"description": "Disable"
}
]
},
{
"name": "r2dbc.migrate.prefer-db-specific-lock",
"values": [
{
"value": "true",
"description": "Enable"
},
{
"value": "false",
"description": "Disable"
}
]
},
{
"name": "r2dbc.migrate.use-environment-substitutor",
"values": [
{
"value": "true",
"description": "Enable"
},
{
"value": "false",
"description": "Disable"
}
]
},
{
"name": "r2dbc.migrate.use-system-properties-substitutor",
"values": [
{
"value": "true",
"description": "Enable"
},
{
"value": "false",
"description": "Disable"
}
]
}
]}