Skip to content

Commit 5033110

Browse files
committed
Review configuration properties appendix
1 parent 8cd4f13 commit 5033110

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Diff for: spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

+8
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,9 @@ content into your application; rather pick only the properties that you need.
129129
spring.profiles.active= # Comma-separated list (or list if using YAML) of <<howto-set-active-spring-profiles,active profiles>>.
130130
spring.profiles.include= # Unconditionally activate the specified comma separated profiles (or list of profiles if using YAML).
131131
132+
# Reactor
133+
spring.reactor.stacktrace-mode.enabled=false # Set whether Reactor should collect stacktrace information at runtime.
134+
132135
# SENDGRID ({sc-spring-boot-autoconfigure}/sendgrid/SendGridAutoConfiguration.{sc-ext}[SendGridAutoConfiguration])
133136
spring.sendgrid.api-key= # SendGrid api key (alternative to username/password)
134137
spring.sendgrid.username= # SendGrid account username
@@ -213,6 +216,7 @@ content into your application; rather pick only the properties that you need.
213216
172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
214217
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3} # regular expression matching trusted IP addresses.
215218
server.tomcat.max-connections= # Maximum number of connections that the server will accept and process at any given time.
219+
server.tomcat.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.
216220
server.tomcat.max-http-post-size=0 # Maximum size in bytes of the HTTP post content.
217221
server.tomcat.max-threads=0 # Maximum amount of worker threads.
218222
server.tomcat.min-spare-threads=0 # Minimum amount of worker threads.
@@ -431,6 +435,9 @@ content into your application; rather pick only the properties that you need.
431435
spring.thymeleaf.template-resolver-order= # Order of the template resolver in the chain.
432436
spring.thymeleaf.view-names= # Comma-separated list of view names that can be resolved.
433437
438+
# SPRING WEB FLUX ({sc-spring-boot-autoconfigure}/web/reactive/WebFluxProperties.{sc-ext}[WebFluxProperties])
439+
spring.webflux.static-path-pattern=/** # Path pattern used for static resources.
440+
434441
# SPRING WEB SERVICES ({sc-spring-boot-autoconfigure}/webservices/WebServicesProperties.{sc-ext}[WebServicesProperties])
435442
spring.webservices.path=/services # Path that serves as the base URI for the services.
436443
spring.webservices.servlet.init= # Servlet init parameters to pass to Spring Web Services.
@@ -597,6 +604,7 @@ content into your application; rather pick only the properties that you need.
597604
spring.data.mongodb.host=localhost # Mongo server host. Cannot be set with uri.
598605
spring.data.mongodb.password= # Login password of the mongo server. Cannot be set with uri.
599606
spring.data.mongodb.port=27017 # Mongo server port. Cannot be set with uri.
607+
spring.data.mongodb.reactive-repositories.enabled=true # Enable Mongo reactive repositories.
600608
spring.data.mongodb.repositories.enabled=true # Enable Mongo repositories.
601609
spring.data.mongodb.uri=mongodb://localhost/test # Mongo database URI. Cannot be set with host, port and credentials.
602610
spring.data.mongodb.username= # Login user of the mongo server. Cannot be set with uri.

0 commit comments

Comments
 (0)