Skip to content

Commit 8ac3ab5

Browse files
committed
Add missing metadata for removed configuration keys
Closes gh-20846
1 parent 3119527 commit 8ac3ab5

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -973,6 +973,15 @@
973973
"name": "management.endpoints.jmx.exposure.include",
974974
"defaultValue": "*"
975975
},
976+
{
977+
"name" : "management.endpoints.jmx.unique-names",
978+
"type" : "java.lang.Boolean",
979+
"description" : "Whether unique runtime object names should be ensured.",
980+
"deprecation" : {
981+
"replacement": "spring.jmx.unique-names",
982+
"level" : "error"
983+
}
984+
},
976985
{
977986
"name": "management.endpoints.web.exposure.include",
978987
"defaultValue": [

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

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -923,6 +923,15 @@
923923
"name": "server.ssl.trust-store-type",
924924
"description": "Type of the trust store."
925925
},
926+
{
927+
"name": "server.tomcat.max-http-header-size",
928+
"type": "org.springframework.util.unit.DataSize",
929+
"description": "Maximum size of the HTTP message header.",
930+
"deprecation": {
931+
"replacement": "server.max-http-header-size",
932+
"level": "error"
933+
}
934+
},
926935
{
927936
"name": "server.undertow.buffers-per-region",
928937
"type": "java.lang.Integer",
@@ -1059,6 +1068,14 @@
10591068
"localhost"
10601069
]
10611070
},
1071+
{
1072+
"name": "spring.data.cassandra.load-balancing-policy",
1073+
"type": "java.lang.Class",
1074+
"description": "Class name of the load balancing policy. The class must have a default constructor.",
1075+
"deprecation": {
1076+
"level": "error"
1077+
}
1078+
},
10621079
{
10631080
"name": "spring.data.cassandra.read-timeout-millis",
10641081
"type": "java.lang.Integer",
@@ -1068,6 +1085,14 @@
10681085
"level": "error"
10691086
}
10701087
},
1088+
{
1089+
"name": "spring.data.cassandra.reconnection-policy",
1090+
"type": "java.lang.Class",
1091+
"description": "Class name of the reconnection policy. The class must have a default constructor.",
1092+
"deprecation": {
1093+
"level": "error"
1094+
}
1095+
},
10711096
{
10721097
"name": "spring.data.cassandra.repositories.enabled",
10731098
"type": "java.lang.Boolean",
@@ -1084,6 +1109,14 @@
10841109
"description": "Type of Cassandra repositories to enable.",
10851110
"defaultValue": "auto"
10861111
},
1112+
{
1113+
"name": "spring.data.cassandra.retry-policy",
1114+
"type": "java.lang.Class",
1115+
"description": "Class name of the retry policy. The class must have a default constructor.",
1116+
"deprecation": {
1117+
"level": "error"
1118+
}
1119+
},
10871120
{
10881121
"name": "spring.data.couchbase.consistency",
10891122
"defaultValue": "read-your-own-writes"
@@ -1843,6 +1876,14 @@
18431876
"level": "error"
18441877
}
18451878
},
1879+
{
1880+
"name": "spring.kafka.streams.cache-max-bytes-buffering",
1881+
"type": "java.lang.Integer",
1882+
"deprecation": {
1883+
"replacement": "spring.kafka.streams.cache-max-size-buffering",
1884+
"level": "error"
1885+
}
1886+
},
18461887
{
18471888
"name": "spring.liquibase.check-change-log-location",
18481889
"type": "java.lang.Boolean",
@@ -1883,6 +1924,14 @@
18831924
"name": "spring.mustache.suffix",
18841925
"defaultValue": ".mustache"
18851926
},
1927+
{
1928+
"name": "spring.mvc.favicon.enabled",
1929+
"type": "java.lang.Boolean",
1930+
"description": "Whether to enable resolution of favicon.ico.",
1931+
"deprecation": {
1932+
"level": "error"
1933+
}
1934+
},
18861935
{
18871936
"name": "spring.mvc.formcontent.filter.enabled",
18881937
"type": "java.lang.Boolean",
@@ -1951,6 +2000,14 @@
19512000
"name": "spring.rabbitmq.listener.type",
19522001
"defaultValue": "simple"
19532002
},
2003+
{
2004+
"name": "spring.rabbitmq.template.queue",
2005+
"type": "java.lang.String",
2006+
"deprecation": {
2007+
"replacement": "spring.rabbitmq.template.default-receive-queue",
2008+
"level": "error"
2009+
}
2010+
},
19542011
{
19552012
"name": "spring.reactor.stacktrace-mode.enabled",
19562013
"description": "Whether Reactor should collect stacktrace information at runtime.",

0 commit comments

Comments
 (0)