|
|
|
@ -129,6 +129,9 @@ content into your application; rather pick only the properties that you need.
|
|
|
|
|
spring.profiles.active= # Comma-separated list (or list if using YAML) of <<howto-set-active-spring-profiles,active profiles>>.
|
|
|
|
|
spring.profiles.include= # Unconditionally activate the specified comma separated profiles (or list of profiles if using YAML).
|
|
|
|
|
|
|
|
|
|
# Reactor
|
|
|
|
|
spring.reactor.stacktrace-mode.enabled=false # Set whether Reactor should collect stacktrace information at runtime.
|
|
|
|
|
|
|
|
|
|
# SENDGRID ({sc-spring-boot-autoconfigure}/sendgrid/SendGridAutoConfiguration.{sc-ext}[SendGridAutoConfiguration])
|
|
|
|
|
spring.sendgrid.api-key= # SendGrid api key (alternative to username/password)
|
|
|
|
|
spring.sendgrid.username= # SendGrid account username
|
|
|
|
@ -213,6 +216,7 @@ content into your application; rather pick only the properties that you need.
|
|
|
|
|
172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
|
|
|
|
|
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3} # regular expression matching trusted IP addresses.
|
|
|
|
|
server.tomcat.max-connections= # Maximum number of connections that the server will accept and process at any given time.
|
|
|
|
|
server.tomcat.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.
|
|
|
|
|
server.tomcat.max-http-post-size=0 # Maximum size in bytes of the HTTP post content.
|
|
|
|
|
server.tomcat.max-threads=0 # Maximum amount of worker threads.
|
|
|
|
|
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.
|
|
|
|
|
spring.thymeleaf.template-resolver-order= # Order of the template resolver in the chain.
|
|
|
|
|
spring.thymeleaf.view-names= # Comma-separated list of view names that can be resolved.
|
|
|
|
|
|
|
|
|
|
# SPRING WEB FLUX ({sc-spring-boot-autoconfigure}/web/reactive/WebFluxProperties.{sc-ext}[WebFluxProperties])
|
|
|
|
|
spring.webflux.static-path-pattern=/** # Path pattern used for static resources.
|
|
|
|
|
|
|
|
|
|
# SPRING WEB SERVICES ({sc-spring-boot-autoconfigure}/webservices/WebServicesProperties.{sc-ext}[WebServicesProperties])
|
|
|
|
|
spring.webservices.path=/services # Path that serves as the base URI for the services.
|
|
|
|
|
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.
|
|
|
|
|
spring.data.mongodb.host=localhost # Mongo server host. Cannot be set with uri.
|
|
|
|
|
spring.data.mongodb.password= # Login password of the mongo server. Cannot be set with uri.
|
|
|
|
|
spring.data.mongodb.port=27017 # Mongo server port. Cannot be set with uri.
|
|
|
|
|
spring.data.mongodb.reactive-repositories.enabled=true # Enable Mongo reactive repositories.
|
|
|
|
|
spring.data.mongodb.repositories.enabled=true # Enable Mongo repositories.
|
|
|
|
|
spring.data.mongodb.uri=mongodb://localhost/test # Mongo database URI. Cannot be set with host, port and credentials.
|
|
|
|
|
spring.data.mongodb.username= # Login user of the mongo server. Cannot be set with uri.
|
|
|
|
|