GH-585 - java.lang.boolean -> java.lang.Boolean in configuration property metadata.

This commit is contained in:
Oliver Drotbohm
2024-05-08 10:00:41 +02:00
parent c16751b98b
commit d5fcda7f45
6 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
"properties": [
{
"name": "spring.modulith.events.rabbitmq.json-enabled",
"type": "java.lang.boolean",
"type": "java.lang.Boolean",
"description": "Whether to auto-configure RabbitTemplate to use JSON for message serialization.",
"defaultValue": "true"
}

View File

@@ -2,19 +2,19 @@
"properties": [
{
"name": "spring.modulith.default-async-termination",
"type": "java.lang.boolean",
"type": "java.lang.Boolean",
"description": "Whether to configure defaults for the async processing termination, namely to wait for task completion for 2 seconds. See TaskExecutionProperties for details.",
"defaultValue": "true"
},
{
"name": "spring.modulith.republish-outstanding-events-on-restart",
"type": "java.lang.boolean",
"type": "java.lang.Boolean",
"description": "Whether to republish outstanding event publications on restarts of the application.",
"defaultValue": "false"
},
{
"name": "spring.modulith.events.externalization.enabled",
"type": "java.lang.boolean",
"type": "java.lang.Boolean",
"description": "Whether to enable event externalization.",
"defaultValue": "true"
}

View File

@@ -2,7 +2,7 @@
"properties": [
{
"name": "spring.modulith.events.jdbc.schema-initialization.enabled",
"type": "java.lang.boolean",
"type": "java.lang.Boolean",
"description": "Whether to initialize the JDBC event publication schema.",
"defaultValue": "false"
}

View File

@@ -2,7 +2,7 @@
"properties": [
{
"name": "spring.modulith.events.kafka.json-enabled",
"type": "java.lang.boolean",
"type": "java.lang.Boolean",
"description": "Whether to auto-configure Spring for Apache Kafka to use JSON for message serialization.",
"defaultValue": "true"
}

View File

@@ -2,7 +2,7 @@
"properties": [
{
"name": "spring.modulith.events.mongodb.transaction-management.enabled",
"type": "java.lang.boolean",
"type": "java.lang.Boolean",
"description": "Whether to automatically enable transactions for MongoDB. Requires the database to be run with a replica set.",
"defaultValue": "true"
}

View File

@@ -2,7 +2,7 @@
"properties": [
{
"name": "spring.modulith.events.neo4j.event-index.enabled",
"type": "java.lang.boolean",
"type": "java.lang.Boolean",
"description": "Whether to initialize the index on the Neo4j event publication event hash property.",
"defaultValue": "false"
}