Skip to content

Commit 6145b3d

Browse files
committed
Polish
1 parent 831b0d7 commit 6145b3d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ content into your application. Rather, pick only the properties that you need.
264264
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3}\\
265265
0:0:0:0:0:0:0:1\\
266266
::1 # Regular expression that matches proxies that are to be trusted.
267-
server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time
267+
server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time.
268268
server.tomcat.max-http-post-size=2MB # Maximum size of the HTTP post content.
269269
server.tomcat.max-swallow-size=2MB # Maximum amount of request body to swallow.
270270
server.tomcat.max-threads=200 # Maximum amount of worker threads.
@@ -343,7 +343,7 @@ content into your application. Rather, pick only the properties that you need.
343343
344344
# MULTIPART ({sc-spring-boot-autoconfigure}/web/servlet/MultipartProperties.{sc-ext}[MultipartProperties])
345345
spring.servlet.multipart.enabled=true # Whether to enable support of multipart uploads.
346-
spring.servlet.multipart.file-size-threshold=0 # Threshold after which files are written to disk.
346+
spring.servlet.multipart.file-size-threshold=0B # Threshold after which files are written to disk.
347347
spring.servlet.multipart.location= # Intermediate location of uploaded files.
348348
spring.servlet.multipart.max-file-size=1MB # Max file size.
349349
spring.servlet.multipart.max-request-size=10MB # Max request size.
@@ -1111,7 +1111,7 @@ content into your application. Rather, pick only the properties that you need.
11111111
spring.kafka.streams.application-id= # Kafka streams application.id property; default spring.application.name.
11121112
spring.kafka.streams.auto-startup=true # Whether or not to auto-start the streams factory bean.
11131113
spring.kafka.streams.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 streams.
1114-
spring.kafka.streams.cache-max-size-buffering= # Maximum number of memory size to be used for buffering across all threads.
1114+
spring.kafka.streams.cache-max-size-buffering= # Maximum memory size to be used for buffering across all threads.
11151115
spring.kafka.streams.client-id= # ID to pass to the server when making requests. Used for server-side logging.
11161116
spring.kafka.streams.properties.*= # Additional Kafka properties used to configure the streams.
11171117
spring.kafka.streams.replication-factor= # The replication factor for change log topics and repartition topics created by the stream processing application.
@@ -1155,7 +1155,7 @@ content into your application. Rather, pick only the properties that you need.
11551155
spring.rabbitmq.listener.simple.idle-event-interval= # How often idle container events should be published.
11561156
spring.rabbitmq.listener.simple.max-concurrency= # Maximum number of listener invoker threads.
11571157
spring.rabbitmq.listener.simple.missing-queues-fatal=true # Whether to fail if the queues declared by the container are not available on the broker and/or whether to stop the container if one or more queues are deleted at runtime.
1158-
spring.rabbitmq.listener.simple.prefetch= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).
1158+
spring.rabbitmq.listener.simple.prefetch= # Maximum number of unacknowledged messages that can be outstanding at each consumer.
11591159
spring.rabbitmq.listener.simple.retry.enabled=false # Whether publishing retries are enabled.
11601160
spring.rabbitmq.listener.simple.retry.initial-interval=1000ms # Duration between the first and second attempt to deliver a message.
11611161
spring.rabbitmq.listener.simple.retry.max-attempts=3 # Maximum number of attempts to deliver a message.

0 commit comments

Comments
 (0)