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-docs/src/main/asciidoc/appendix-application-properties.adoc
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,7 @@ content into your application. Rather, pick only the properties that you need.
190
190
server.jetty.accesslog.time-zone=GMT # Timezone of the request log.
191
191
server.jetty.max-http-post-size=200000 # Maximum size in bytes of the HTTP post or put content.
192
192
server.jetty.selectors=-1 # Number of selector threads to use. When the value is -1, the default, the number of selectors is derived from the operating environment.
193
-
server.max-http-header-size=0 # Maximum size, in bytes, of the HTTP message header.
193
+
server.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.
194
194
server.port=8080 # Server HTTP port.
195
195
server.server-header= # Value to use for the Server response header (if empty, no header is sent).
196
196
server.use-forward-headers= # Whether X-Forwarded-* headers should be applied to the HttpRequest.
@@ -250,7 +250,7 @@ content into your application. Rather, pick only the properties that you need.
250
250
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3}\\
251
251
0:0:0:0:0:0:0:1\\
252
252
::1 # Regular expression that matches proxies that are to be trusted.
253
-
server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time
253
+
server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time.
254
254
server.tomcat.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.
255
255
server.tomcat.max-http-post-size=2097152 # Maximum size in bytes of the HTTP post content.
256
256
server.tomcat.max-threads=200 # Maximum amount of worker threads.
@@ -1101,7 +1101,7 @@ content into your application. Rather, pick only the properties that you need.
1101
1101
spring.rabbitmq.listener.simple.default-requeue-rejected= # Whether rejected deliveries are re-queued by default.
1102
1102
spring.rabbitmq.listener.simple.idle-event-interval= # How often idle container events should be published.
1103
1103
spring.rabbitmq.listener.simple.max-concurrency= # Maximum number of listener invoker threads.
1104
-
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).
1104
+
spring.rabbitmq.listener.simple.prefetch= # Maximum number of unacknowledged messages that can be outstanding at each consumer.
1105
1105
spring.rabbitmq.listener.simple.retry.enabled=false # Whether publishing retries are enabled.
1106
1106
spring.rabbitmq.listener.simple.retry.initial-interval=1000ms # Duration between the first and second attempt to deliver a message.
1107
1107
spring.rabbitmq.listener.simple.retry.max-attempts=3 # Maximum number of attempts to deliver a message.
@@ -1320,7 +1320,7 @@ content into your application. Rather, pick only the properties that you need.
1320
1320
management.metrics.binders.logback.enabled=true # Whether to enable Logback metrics.
1321
1321
management.metrics.binders.processor.enabled=true # Whether to enable processor metrics.
1322
1322
management.metrics.binders.uptime.enabled=true # Whether to enable uptime metrics.
1323
-
management.metrics.distribution.percentiles-histogram.*= # Whether meter IDs starting-with the specified name should be publish percentile histograms.
1323
+
management.metrics.distribution.percentiles-histogram.*= # Whether meter IDs startingwith the specified name should publish percentile histograms.
1324
1324
management.metrics.distribution.percentiles.*= # Specific computed non-aggregable percentiles to ship to the backend for meter IDs starting-with the specified name.
1325
1325
management.metrics.distribution.sla.*= # Specific SLA boundaries for meter IDs starting-with the specified name. The longest match wins, the key `all` can also be used to configure all meters.
1326
1326
management.metrics.enable.*= # Whether meter IDs starting-with the specified name should be enabled. The longest match wins, the key `all` can also be used to configure all meters.
0 commit comments