Polish
This commit is contained in:
parent
831b0d7bdd
commit
6145b3d278
|
|
@ -264,7 +264,7 @@ content into your application. Rather, pick only the properties that you need.
|
|||
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3}\\
|
||||
0:0:0:0:0:0:0:1\\
|
||||
::1 # Regular expression that matches proxies that are to be trusted.
|
||||
server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time
|
||||
server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time.
|
||||
server.tomcat.max-http-post-size=2MB # Maximum size of the HTTP post content.
|
||||
server.tomcat.max-swallow-size=2MB # Maximum amount of request body to swallow.
|
||||
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.
|
|||
|
||||
# MULTIPART ({sc-spring-boot-autoconfigure}/web/servlet/MultipartProperties.{sc-ext}[MultipartProperties])
|
||||
spring.servlet.multipart.enabled=true # Whether to enable support of multipart uploads.
|
||||
spring.servlet.multipart.file-size-threshold=0 # Threshold after which files are written to disk.
|
||||
spring.servlet.multipart.file-size-threshold=0B # Threshold after which files are written to disk.
|
||||
spring.servlet.multipart.location= # Intermediate location of uploaded files.
|
||||
spring.servlet.multipart.max-file-size=1MB # Max file size.
|
||||
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.
|
|||
spring.kafka.streams.application-id= # Kafka streams application.id property; default spring.application.name.
|
||||
spring.kafka.streams.auto-startup=true # Whether or not to auto-start the streams factory bean.
|
||||
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.
|
||||
spring.kafka.streams.cache-max-size-buffering= # Maximum number of memory size to be used for buffering across all threads.
|
||||
spring.kafka.streams.cache-max-size-buffering= # Maximum memory size to be used for buffering across all threads.
|
||||
spring.kafka.streams.client-id= # ID to pass to the server when making requests. Used for server-side logging.
|
||||
spring.kafka.streams.properties.*= # Additional Kafka properties used to configure the streams.
|
||||
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.
|
|||
spring.rabbitmq.listener.simple.idle-event-interval= # How often idle container events should be published.
|
||||
spring.rabbitmq.listener.simple.max-concurrency= # Maximum number of listener invoker threads.
|
||||
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.
|
||||
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).
|
||||
spring.rabbitmq.listener.simple.prefetch= # Maximum number of unacknowledged messages that can be outstanding at each consumer.
|
||||
spring.rabbitmq.listener.simple.retry.enabled=false # Whether publishing retries are enabled.
|
||||
spring.rabbitmq.listener.simple.retry.initial-interval=1000ms # Duration between the first and second attempt to deliver a message.
|
||||
spring.rabbitmq.listener.simple.retry.max-attempts=3 # Maximum number of attempts to deliver a message.
|
||||
|
|
|
|||
Loading…
Reference in New Issue