You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaProperties.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ public class KafkaProperties {
57
57
58
58
/**
59
59
* Comma-delimited list of host:port pairs to use for establishing the initial
60
-
* connection to the Kafka cluster. Applies to all components unless overridden.
60
+
* connections to the Kafka cluster. Applies to all components unless overridden.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1040,11 +1040,11 @@ content into your application. Rather, pick only the properties that you need.
1040
1040
spring.kafka.admin.ssl.trust-store-location= # Location of the trust store file.
1041
1041
spring.kafka.admin.ssl.trust-store-password= # Store password for the trust store file.
1042
1042
spring.kafka.admin.ssl.trust-store-type= # Type of the trust store.
1043
-
spring.kafka.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster. Applies to all components unless overridden.
1043
+
spring.kafka.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Applies to all components unless overridden.
1044
1044
spring.kafka.client-id= # ID to pass to the server when making requests. Used for server-side logging.
1045
1045
spring.kafka.consumer.auto-commit-interval= # Frequency with which the consumer offsets are auto-committed to Kafka if 'enable.auto.commit' is set to true.
1046
1046
spring.kafka.consumer.auto-offset-reset= # What to do when there is no initial offset in Kafka or if the current offset no longer exists on the server.
1047
-
spring.kafka.consumer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster. Overrides the global property, for consumers.
1047
+
spring.kafka.consumer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for consumers.
1048
1048
spring.kafka.consumer.client-id= # ID to pass to the server when making requests. Used for server-side logging.
1049
1049
spring.kafka.consumer.enable-auto-commit= # Whether the consumer's offset is periodically committed in the background.
1050
1050
spring.kafka.consumer.fetch-max-wait= # Maximum amount of time the server blocks before answering the fetch request if there isn't sufficient data to immediately satisfy the requirement given by "fetch.min.bytes".
@@ -1080,7 +1080,7 @@ content into your application. Rather, pick only the properties that you need.
spring.kafka.producer.acks= # Number of acknowledgments the producer requires the leader to have received before considering a request complete.
1082
1082
spring.kafka.producer.batch-size= # Default batch size in bytes.
1083
-
spring.kafka.producer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster. Overrides the global property, for producers.
1083
+
spring.kafka.producer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for producers.
1084
1084
spring.kafka.producer.buffer-memory= # Total bytes of memory the producer can use to buffer records waiting to be sent to the server.
1085
1085
spring.kafka.producer.client-id= # ID to pass to the server when making requests. Used for server-side logging.
1086
1086
spring.kafka.producer.compression-type= # Compression type for all data generated by the producer.
0 commit comments