Skip to content

Commit e431842

Browse files
committed
Merge branch '2.7.x'
2 parents 2e32f80 + 45f393b commit e431842

File tree

5 files changed

+149
-143
lines changed

5 files changed

+149
-143
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"groups": [],
23
"properties": [
34
{
45
"name": "info",
@@ -338,13 +339,6 @@
338339
"reason": "Instead, filter 'process.uptime' and 'process.start.time' metrics."
339340
}
340341
},
341-
{
342-
"name": "management.metrics.system.diskspace.paths",
343-
"type": "java.util.List<java.io.File>",
344-
"defaultValue": [
345-
"."
346-
]
347-
},
348342
{
349343
"name": "management.metrics.export.appoptics.num-threads",
350344
"type": "java.lang.Integer",
@@ -550,6 +544,13 @@
550544
"description": "Whether to enable Mongo connection pool metrics.",
551545
"defaultValue": true
552546
},
547+
{
548+
"name": "management.metrics.system.diskspace.paths",
549+
"type": "java.util.List<java.io.File>",
550+
"defaultValue": [
551+
"."
552+
]
553+
},
553554
{
554555
"name": "management.metrics.web.client.request.autotime.enabled",
555556
"description": "Whether to automatically time web client requests.",
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2+
"groups": [],
23
"properties": [
34
{
45
"name": "management.endpoints.migrate-legacy-ids",
56
"type": "java.lang.Boolean",
67
"description": "Whether to transparently migrate legacy endpoint IDs.",
78
"defaultValue": false
89
}
9-
]
10+
],
11+
"hints": []
1012
}

spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"groups": [],
23
"properties": [
34
{
45
"name": "server.compression.enabled",
@@ -357,10 +358,10 @@
357358
},
358359
{
359360
"name": "spring.batch.initialize-schema",
360-
"type" : "org.springframework.boot.sql.init.DatabaseInitializationMode",
361-
"deprecation" : {
361+
"type": "org.springframework.boot.sql.init.DatabaseInitializationMode",
362+
"deprecation": {
362363
"replacement": "spring.batch.jdbc.initialize-schema",
363-
"level" : "error"
364+
"level": "error"
364365
}
365366
},
366367
{
@@ -383,11 +384,11 @@
383384
"defaultValue": true
384385
},
385386
{
386-
"name" : "spring.batch.schema",
387-
"type" : "java.lang.String",
388-
"deprecation" : {
387+
"name": "spring.batch.schema",
388+
"type": "java.lang.String",
389+
"deprecation": {
389390
"replacement": "spring.batch.jdbc.schema",
390-
"level" : "error"
391+
"level": "error"
391392
}
392393
},
393394
{
@@ -550,6 +551,14 @@
550551
"level": "error"
551552
}
552553
},
554+
{
555+
"name": "spring.data.cassandra.pool.heartbeat-interval",
556+
"defaultValue": "30s"
557+
},
558+
{
559+
"name": "spring.data.cassandra.pool.idle-timeout",
560+
"defaultValue": "5s"
561+
},
553562
{
554563
"name": "spring.data.cassandra.pool.max-queue-size",
555564
"type": "java.lang.Integer",
@@ -585,14 +594,14 @@
585594
"name": "spring.data.cassandra.request.page-size",
586595
"defaultValue": 5000
587596
},
588-
{
589-
"name": "spring.data.cassandra.request.timeout",
590-
"defaultValue": "2s"
591-
},
592597
{
593598
"name": "spring.data.cassandra.request.throttler.type",
594599
"defaultValue": "none"
595600
},
601+
{
602+
"name": "spring.data.cassandra.request.timeout",
603+
"defaultValue": "2s"
604+
},
596605
{
597606
"name": "spring.data.cassandra.retry-policy",
598607
"type": "java.lang.Class",
@@ -601,14 +610,6 @@
601610
"level": "error"
602611
}
603612
},
604-
{
605-
"name": "spring.data.cassandra.pool.heartbeat-interval",
606-
"defaultValue": "30s"
607-
},
608-
{
609-
"name": "spring.data.cassandra.pool.idle-timeout",
610-
"defaultValue": "5s"
611-
},
612613
{
613614
"name": "spring.data.couchbase.consistency",
614615
"type": "org.springframework.data.couchbase.core.query.Consistency",
@@ -1677,6 +1678,10 @@
16771678
"name": "spring.neo4j.uri",
16781679
"defaultValue": "bolt://localhost:7687"
16791680
},
1681+
{
1682+
"name": "spring.netty.leak-detection",
1683+
"defaultValue": "simple"
1684+
},
16801685
{
16811686
"name": "spring.quartz.jdbc.comment-prefix",
16821687
"defaultValue": [
@@ -2062,10 +2067,6 @@
20622067
"name": "spring.webservices.wsdl-locations",
20632068
"type": "java.util.List<java.lang.String>",
20642069
"description": "Comma-separated list of locations of WSDLs and accompanying XSDs to be exposed as beans."
2065-
},
2066-
{
2067-
"name": "spring.netty.leak-detection",
2068-
"defaultValue": "simple"
20692070
}
20702071
],
20712072
"hints": [
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2+
"groups": [],
23
"properties": [
34
{
45
"name": "spring.devtools.add-properties",
56
"type": "java.lang.Boolean",
67
"description": "Whether to enable development property defaults.",
78
"defaultValue": true
89
}
9-
]
10+
],
11+
"hints": []
1012
}

0 commit comments

Comments
 (0)