Skip to content

Commit 134682a

Browse files
committed
Add error metadata for properties removed recently
1 parent bd0a41d commit 134682a

File tree

2 files changed

+211
-0
lines changed

2 files changed

+211
-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
@@ -1269,6 +1269,15 @@
12691269
"level": "error"
12701270
}
12711271
},
1272+
{
1273+
"name": "management.health.couchbase.timeout",
1274+
"type": "java.time.Duration",
1275+
"description": "Timeout for getting the Bucket information from the server.",
1276+
"defaultValue": "1000ms",
1277+
"deprecation": {
1278+
"level": "error"
1279+
}
1280+
},
12721281
{
12731282
"name": "management.port",
12741283
"type": "java.lang.Integer",

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

Lines changed: 202 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,15 @@
775775
"level": "error"
776776
}
777777
},
778+
{
779+
"name": "flyway.encoding",
780+
"type": "java.nio.charset.Charset",
781+
"description": "Encoding of SQL migrations.",
782+
"deprecation": {
783+
"replacement": "spring.flyway.encoding",
784+
"level": "error"
785+
}
786+
},
778787
{
779788
"name": "flyway.init-description",
780789
"type": "java.lang.String",
@@ -1394,6 +1403,33 @@
13941403
"level": "error"
13951404
}
13961405
},
1406+
{
1407+
"name": "spring.activemq.pool.create-connection-on-startup",
1408+
"type": "java.lang.Boolean",
1409+
"description": "Whether to create a connection on startup. Can be used to warm up the pool on startup.",
1410+
"defaultValue": true,
1411+
"deprecation": {
1412+
"level": "error"
1413+
}
1414+
},
1415+
{
1416+
"name": "spring.activemq.pool.expiry-timeout",
1417+
"type": "java.time.Duration",
1418+
"description": "Connection expiration timeout.",
1419+
"defaultValue": "0ms",
1420+
"deprecation": {
1421+
"level": "error"
1422+
}
1423+
},
1424+
{
1425+
"name": "spring.activemq.pool.reconnect-on-exception",
1426+
"type": "java.lang.Boolean",
1427+
"description": "Reset the connection when a \"JMSException\" occurs.",
1428+
"defaultValue": true,
1429+
"deprecation": {
1430+
"level": "error"
1431+
}
1432+
},
13971433
{
13981434
"name": "spring.batch.initializer.enabled",
13991435
"type": "java.lang.Boolean",
@@ -1403,6 +1439,22 @@
14031439
"level": "error"
14041440
}
14051441
},
1442+
{
1443+
"name": "spring.couchbase.env.endpoints.query",
1444+
"type": "java.lang.Integer",
1445+
"description": "Number of sockets per node against the query (N1QL) service.",
1446+
"deprecation": {
1447+
"level": "error"
1448+
}
1449+
},
1450+
{
1451+
"name": "spring.couchbase.env.endpoints.view",
1452+
"type": "java.lang.Integer",
1453+
"description": "Number of sockets per node against the view service.",
1454+
"deprecation": {
1455+
"level": "error"
1456+
}
1457+
},
14061458
{
14071459
"name": "spring.data.cassandra.connect-timeout-millis",
14081460
"type": "java.lang.Integer",
@@ -1452,6 +1504,38 @@
14521504
".sql"
14531505
]
14541506
},
1507+
{
1508+
"name": "spring.flyway.dry-run-output",
1509+
"type": "java.io.OutputStream",
1510+
"deprecation": {
1511+
"level": "error",
1512+
"reason": "Flyway pro edition only."
1513+
}
1514+
},
1515+
{
1516+
"name": "spring.flyway.error-handlers",
1517+
"type": "org.flywaydb.core.api.errorhandler.ErrorHandler[]",
1518+
"deprecation": {
1519+
"level": "error",
1520+
"reason": "Flyway pro edition only."
1521+
}
1522+
},
1523+
{
1524+
"name": "spring.flyway.sql-migration-suffix",
1525+
"type": "java.lang.String",
1526+
"deprecation": {
1527+
"replacement": "spring.flyway.sql-migration-suffixes",
1528+
"level": "error"
1529+
}
1530+
},
1531+
{
1532+
"name": "spring.flyway.undo-sql-migration-prefix",
1533+
"type": "java.lang.String",
1534+
"deprecation": {
1535+
"level": "error",
1536+
"reason": "Flyway pro edition only."
1537+
}
1538+
},
14551539
{
14561540
"name": "spring.git.properties",
14571541
"type": "java.lang.String",
@@ -1529,6 +1613,124 @@
15291613
"level": "error"
15301614
}
15311615
},
1616+
{
1617+
"name" : "spring.jta.narayana.default-timeout",
1618+
"type" : "java.time.Duration",
1619+
"description" : "Transaction timeout. If a duration suffix is not specified, seconds will be used.",
1620+
"defaultValue" : "60s",
1621+
"deprecation" : {
1622+
"level": "error",
1623+
"reason": "Narayana support has moved to third party starter."
1624+
}
1625+
}, {
1626+
"name" : "spring.jta.narayana.expiry-scanners",
1627+
"type" : "java.util.List<java.lang.String>",
1628+
"description" : "Comma-separated list of expiry scanners.",
1629+
"defaultValue" : [ "com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner" ],
1630+
"deprecation" : {
1631+
"level": "error",
1632+
"reason": "Narayana support has moved to third party starter."
1633+
}
1634+
}, {
1635+
"name" : "spring.jta.narayana.log-dir",
1636+
"type" : "java.lang.String",
1637+
"description" : "Transaction object store directory.",
1638+
"deprecation" : {
1639+
"level": "error",
1640+
"reason": "Narayana support has moved to third party starter."
1641+
}
1642+
}, {
1643+
"name" : "spring.jta.narayana.one-phase-commit",
1644+
"type" : "java.lang.Boolean",
1645+
"description" : "Whether to enable one phase commit optimization.",
1646+
"defaultValue" : true,
1647+
"deprecation" : {
1648+
"level": "error",
1649+
"reason": "Narayana support has moved to third party starter."
1650+
}
1651+
}, {
1652+
"name" : "spring.jta.narayana.periodic-recovery-period",
1653+
"type" : "java.time.Duration",
1654+
"description" : "Interval in which periodic recovery scans are performed. If a duration suffix is not specified, seconds will be used.",
1655+
"defaultValue" : "120s",
1656+
"deprecation" : {
1657+
"level": "error",
1658+
"reason": "Narayana support has moved to third party starter."
1659+
}
1660+
}, {
1661+
"name" : "spring.jta.narayana.recovery-backoff-period",
1662+
"type" : "java.time.Duration",
1663+
"description" : "Back off period between first and second phases of the recovery scan. If a duration suffix is not specified, seconds will be used.",
1664+
"defaultValue" : "10s",
1665+
"deprecation" : {
1666+
"level": "error",
1667+
"reason": "Narayana support has moved to third party starter."
1668+
}
1669+
},
1670+
{
1671+
"name": "spring.jta.narayana.recovery-db-pass",
1672+
"type": "java.lang.String",
1673+
"description": "Database password to be used by the recovery manager.",
1674+
"deprecation": {
1675+
"level": "error",
1676+
"reason": "Narayana support has moved to third party starter."
1677+
}
1678+
},
1679+
{
1680+
"name": "spring.jta.narayana.recovery-db-user",
1681+
"type": "java.lang.String",
1682+
"description": "Database username to be used by the recovery manager.",
1683+
"deprecation": {
1684+
"level": "error",
1685+
"reason": "Narayana support has moved to third party starter."
1686+
}
1687+
},
1688+
{
1689+
"name": "spring.jta.narayana.recovery-jms-pass",
1690+
"type": "java.lang.String",
1691+
"description": "JMS password to be used by the recovery manager.",
1692+
"deprecation": {
1693+
"level": "error",
1694+
"reason": "Narayana support has moved to third party starter."
1695+
}
1696+
},
1697+
{
1698+
"name": "spring.jta.narayana.recovery-jms-user",
1699+
"type": "java.lang.String",
1700+
"description": "JMS username to be used by the recovery manager.",
1701+
"deprecation": {
1702+
"level": "error",
1703+
"reason": "Narayana support has moved to third party starter."
1704+
}
1705+
},
1706+
{
1707+
"name": "spring.jta.narayana.recovery-modules",
1708+
"type": "java.util.List<java.lang.String>",
1709+
"description": "Comma-separated list of recovery modules.",
1710+
"deprecation": {
1711+
"level": "error",
1712+
"reason": "Narayana support has moved to third party starter."
1713+
}
1714+
},
1715+
{
1716+
"name": "spring.jta.narayana.transaction-manager-id",
1717+
"type": "java.lang.String",
1718+
"description": "Unique transaction manager id.",
1719+
"defaultValue": "1",
1720+
"deprecation": {
1721+
"level": "error",
1722+
"reason": "Narayana support has moved to third party starter."
1723+
}
1724+
},
1725+
{
1726+
"name": "spring.jta.narayana.xa-resource-orphan-filters",
1727+
"type": "java.util.List<java.lang.String>",
1728+
"description": "Comma-separated list of orphan filters.",
1729+
"deprecation": {
1730+
"level": "error",
1731+
"reason": "Narayana support has moved to third party starter."
1732+
}
1733+
},
15321734
{
15331735
"name": "spring.kafka.admin.ssl.keystore-location",
15341736
"type": "org.springframework.core.io.Resource",

0 commit comments

Comments
 (0)