본문 바로가기
Spring

Common Application Properties

by 이도현 2022. 1. 2.

 

https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html#application-properties.core

 

Common Application Properties

 

docs.spring.io

Spring Boot 에서 사용하는 디폴트 프로퍼티 값을 정리 해 두었다.

 

# 1. Core Properties

## Enable debug logs. / default : FALSE
# debug=FALSE
## Arbitrary properties to add to the info endpoint. / default :
# info.*=
## Charset to use for console output. / default :
# logging.charset.console=
## Charset to use for file output. / default :
# logging.charset.file=
## Location of the logging configuration file. For instance, `classpath:logback.xml` for Logback. / default :
# logging.config=
## Conversion word used when logging exceptions. / default : %wEx
# logging.exception-conversion-word=%wEx
## Log file name (for instance, `myapp.log`). Names can be an exact location or relative to the current directory. / default :
# logging.file.name=
## Location of the log file. For instance, `/var/log`. / default :
# logging.file.path=
## Log groups to quickly change multiple loggers at the same time. For instance, `logging.group.db=org.hibernate,org.springframework.jdbc`. / default :
# logging.group.*=
## Log levels severity mapping. For instance, `logging.level.org.springframework=DEBUG`. / default :
# logging.level.*=
## Overriding configuration files used to create a composite configuration. / default :
# logging.log4j2.config.override=
## Whether to clean the archive log files on startup. / default : FALSE
# logging.logback.rollingpolicy.clean-history-on-start=FALSE
## Pattern for rolled-over log file names. / default : ${LOG_FILE}.%d{yyyy-MM-dd}.%i.gz
# logging.logback.rollingpolicy.file-name-pattern=${LOG_FILE}.%d{yyyy-MM-dd}.%i.gz
## Maximum log file size. / default : 10MB
# logging.logback.rollingpolicy.max-file-size=10MB
## Maximum number of archive log files to keep. / default : 7
# logging.logback.rollingpolicy.max-history=7
## Total size of log backups to be kept. / default : 0B
# logging.logback.rollingpolicy.total-size-cap=0B
## Appender pattern for output to the console. Supported only with the default Logback setup. / default : %clr(%d{${LOG_DATEFORMAT_PATTERN:-yyyy-MM-dd HH:mm:ss.SSS}}){faint} %clr(${LOG_LEVEL_PATTERN:-%5p}) %clr(${PID:- }){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}
# logging.pattern.console=%clr(%d{${LOG_DATEFORMAT_PATTERN:-yyyy-MM-dd HH:mm:ss.SSS}}){faint} %clr(${LOG_LEVEL_PATTERN:-%5p}) %clr(${PID:- }){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}
## Appender pattern for log date format. Supported only with the default Logback setup. / default : yyyy-MM-dd HH:mm:ss.SSS
# logging.pattern.dateformat=yyyy-MM-dd HH:mm:ss.SSS
## Appender pattern for output to a file. Supported only with the default Logback setup. / default : %d{${LOG_DATEFORMAT_PATTERN:-yyyy-MM-dd HH:mm:ss.SSS}} ${LOG_LEVEL_PATTERN:-%5p} ${PID:- } --- [%t] %-40.40logger{39} : %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}
# logging.pattern.file=%d{${LOG_DATEFORMAT_PATTERN:-yyyy-MM-dd HH:mm:ss.SSS}} ${LOG_LEVEL_PATTERN:-%5p} ${PID:- } --- [%t] %-40.40logger{39} : %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}
## Appender pattern for log level. Supported only with the default Logback setup. / default : %5p
# logging.pattern.level=%5p
## Register a shutdown hook for the logging system when it is initialized. Disabled automatically when deployed as a war file. / default : TRUE
# logging.register-shutdown-hook=TRUE
## Add @EnableAspectJAutoProxy. / default : TRUE
# spring.aop.auto=TRUE
## Whether subclass-based (CGLIB) proxies are to be created (true), as opposed to standard Java interface-based proxies (false). / default : TRUE
# spring.aop.proxy-target-class=TRUE
## Whether to enable admin features for the application. / default : FALSE
# spring.application.admin.enabled=FALSE
## JMX name of the application admin MBean. / default : org.springframework.boot:type=Admin,name=SpringApplication
# spring.application.admin.jmx-name=org.springframework.boot:type=Admin,name=SpringApplication
## Application name. / default :
# spring.application.name=
## Auto-configuration classes to exclude. / default :
# spring.autoconfigure.exclude=
## Banner file encoding. / default : UTF-8
# spring.banner.charset=UTF-8
## Bit depth to use for ANSI colors. Supported values are 4 (16 color) or 8 (256 color). / default : 4
# spring.banner.image.bitdepth=4
## Height of the banner image in chars (default based on image height). / default :
# spring.banner.image.height=
## Whether images should be inverted for dark terminal themes. / default : FALSE
# spring.banner.image.invert=FALSE
## Banner image file location (jpg or png can also be used). / default : classpath:banner.gif
# spring.banner.image.location=classpath:banner.gif
## Left hand image margin in chars. / default : 2
# spring.banner.image.margin=2
## Pixel mode to use when rendering the image. / default : TEXT
# spring.banner.image.pixelmode=TEXT
## Width of the banner image in chars. / default : 76
# spring.banner.image.width=76
## Banner text resource location. / default : classpath:banner.txt
# spring.banner.location=classpath:banner.txt
## Whether to skip search of BeanInfo classes. / default : TRUE
# spring.beaninfo.ignore=TRUE
## Whether to log form data at DEBUG level, and headers at TRACE level. / default : FALSE
# spring.codec.log-request-details=FALSE
## Limit on the number of bytes that can be buffered whenever the input stream needs to be aggregated. This applies only to the auto-configured WebFlux server and WebClient instances. By default this is not set, in which case individual codec defaults apply. Most codecs are limited to 256K by default. / default :
# spring.codec.max-in-memory-size=
## Required cloud platform for the document to be included. / default :
# spring.config.activate.on-cloud-platform=
## Profile expressions that should match for the document to be included. / default :
# spring.config.activate.on-profile=
## Config file locations used in addition to the defaults. / default :
# spring.config.additional-location=
## Import additional config data. / default :
# spring.config.import=
## Config file locations that replace the defaults. / default :
# spring.config.location=
## Config file name. / default : application
# spring.config.name=application
## Whether to enable configuration data processing legacy mode. / default : FALSE
# spring.config.use-legacy-processing=FALSE
## File encoding. / default : UTF-8
# spring.info.build.encoding=UTF-8
## Location of the generated build-info.properties file. / default : classpath:META-INF/build-info.properties
# spring.info.build.location=classpath:META-INF/build-info.properties
## File encoding. / default : UTF-8
# spring.info.git.encoding=UTF-8
## Location of the generated git.properties file. / default : classpath:git.properties
# spring.info.git.location=classpath:git.properties
## JMX domain name. / default :
# spring.jmx.default-domain=
## Expose management beans to the JMX domain. / default : FALSE
# spring.jmx.enabled=FALSE
## MBeanServer bean name. / default : mbeanServer
# spring.jmx.server=mbeanServer
## Whether unique runtime object names should be ensured. / default : FALSE
# spring.jmx.unique-names=FALSE
## Timeout for the shutdown of any phase (group of SmartLifecycle beans with the same 'phase' value). / default : 30s
# spring.lifecycle.timeout-per-shutdown-phase=30s
## Whether bean definition overriding, by registering a definition with the same name as an existing definition, is allowed. / default : FALSE
# spring.main.allow-bean-definition-overriding=FALSE
## Whether to allow circular references between beans and automatically try to resolve them. / default : FALSE
# spring.main.allow-circular-references=FALSE
## Mode used to display the banner when the application runs. / default : console
# spring.main.banner-mode=console
## Override the Cloud Platform auto-detection. / default :
# spring.main.cloud-platform=
## Whether initialization should be performed lazily. / default : FALSE
# spring.main.lazy-initialization=FALSE
## Whether to log information about the application when it starts. / default : TRUE
# spring.main.log-startup-info=TRUE
## Whether the application should have a shutdown hook registered. / default : TRUE
# spring.main.register-shutdown-hook=TRUE
## Sources (class names, package names, or XML resource locations) to include in the ApplicationContext. / default :
# spring.main.sources=
## Flag to explicitly request a specific type of web application. If not set, auto-detected based on the classpath. / default :
# spring.main.web-application-type=
## Expected character encoding the application must use. / default :
# spring.mandatory-file-encoding=
## Whether to always apply the MessageFormat rules, parsing even messages without arguments. / default : FALSE
# spring.messages.always-use-message-format=FALSE
## Comma-separated list of basenames (essentially a fully-qualified classpath location), each following the ResourceBundle convention with relaxed support for slash based locations. If it doesn't contain a package qualifier (such as org.mypackage), it will be resolved from the classpath root. / default : messages
# spring.messages.basename=messages
## Loaded resource bundle files cache duration. When not set, bundles are cached forever. If a duration suffix is not specified, seconds will be used. / default :
# spring.messages.cache-duration=
## Message bundles encoding. / default : UTF-8
# spring.messages.encoding=UTF-8
## Whether to fall back to the system Locale if no files for a specific Locale have been found. if this is turned off, the only fallback will be the default file (e.g. messages.properties for basename messages). / default : TRUE
# spring.messages.fallback-to-system-locale=TRUE
## Whether to use the message code as the default message instead of throwing a NoSuchMessageException. Recommended during development only. / default : FALSE
# spring.messages.use-code-as-default-message=FALSE
## Configures the ANSI output. / default : detect
# spring.output.ansi.enabled=detect
## Fails if ApplicationPidFileWriter is used but it cannot write the PID file. / default :
# spring.pid.fail-on-write-error=
## Location of the PID file to write (if ApplicationPidFileWriter is used). / default :
# spring.pid.file=
## Comma-separated list of active profiles. Can be overridden by a command line switch. / default :
# spring.profiles.active=
## Name of the profile to enable if no profile is active. / default : default
# spring.profiles.default=default
## Profile groups to define a logical name for a related group of profiles. / default :
# spring.profiles.group.*=
## Unconditionally activate the specified comma-separated list of profiles (or list of profiles if using YAML). / default :
# spring.profiles.include=
## Whether to automatically start the scheduler after initialization. / default : TRUE
# spring.quartz.auto-startup=TRUE
## Prefixes for single-line comments in SQL initialization scripts. / default : [#, --]
# spring.quartz.jdbc.comment-prefix=[#, --]
## Database schema initialization mode. / default : embedded
# spring.quartz.jdbc.initialize-schema=embedded
## Platform to use in initialization scripts if the @@platform@@ placeholder is used. Auto-detected by default. / default :
# spring.quartz.jdbc.platform=
## Path to the SQL file to use to initialize the database schema. / default : classpath:org/quartz/impl/jdbcjobstore/tables_@@platform@@.sql
# spring.quartz.jdbc.schema=classpath:org/quartz/impl/jdbcjobstore/tables_@@platform@@.sql
## Quartz job store type. / default : memory
# spring.quartz.job-store-type=memory
## Whether configured jobs should overwrite existing job definitions. / default : FALSE
# spring.quartz.overwrite-existing-jobs=FALSE
## Additional Quartz Scheduler properties. / default :
# spring.quartz.properties.*=
## Name of the scheduler. / default : quartzScheduler
# spring.quartz.scheduler-name=quartzScheduler
## Delay after which the scheduler is started once initialization completes. Setting this property makes sense if no jobs should be run before the entire application has started up. / default : 0s
# spring.quartz.startup-delay=0s
## Whether to wait for running jobs to complete on shutdown. / default : FALSE
# spring.quartz.wait-for-jobs-to-complete-on-shutdown=FALSE
## Whether the Reactor Debug Agent should be enabled when reactor-tools is present. / default : TRUE
# spring.reactor.debug-agent.enabled=TRUE
## Whether core threads are allowed to time out. This enables dynamic growing and shrinking of the pool. / default : TRUE
# spring.task.execution.pool.allow-core-thread-timeout=TRUE
## Core number of threads. / default : 8
# spring.task.execution.pool.core-size=8
## Time limit for which threads may remain idle before being terminated. / default : 60s
# spring.task.execution.pool.keep-alive=60s
## Maximum allowed number of threads. If tasks are filling up the queue, the pool can expand up to that size to accommodate the load. Ignored if the queue is unbounded. / default :
# spring.task.execution.pool.max-size=
## Queue capacity. An unbounded capacity does not increase the pool and therefore ignores the max-size property. / default :
# spring.task.execution.pool.queue-capacity=
## Whether the executor should wait for scheduled tasks to complete on shutdown. / default : FALSE
# spring.task.execution.shutdown.await-termination=FALSE
## Maximum time the executor should wait for remaining tasks to complete. / default :
# spring.task.execution.shutdown.await-termination-period=
## Prefix to use for the names of newly created threads. / default : task-
# spring.task.execution.thread-name-prefix=task-
## Maximum allowed number of threads. / default : 1
# spring.task.scheduling.pool.size=1
## Whether the executor should wait for scheduled tasks to complete on shutdown. / default : FALSE
# spring.task.scheduling.shutdown.await-termination=FALSE
## Maximum time the executor should wait for remaining tasks to complete. / default :
# spring.task.scheduling.shutdown.await-termination-period=
## Prefix to use for the names of newly created threads. / default : scheduling-
# spring.task.scheduling.thread-name-prefix=scheduling-
## Enable trace logs. / default : FALSE
# trace=FALSE


# 2. Cache Properties

## Comma-separated list of cache names to create if supported by the underlying cache manager. Usually, this disables the ability to create additional caches on-the-fly. / default :
# spring.cache.cache-names=
## The spec to use to create caches. See CaffeineSpec for more details on the spec format. / default :
# spring.cache.caffeine.spec=
## Entry expiration. By default the entries never expire. Note that this value is ultimately converted to seconds. / default :
# spring.cache.couchbase.expiration=
## The location of the configuration file to use to initialize EhCache. / default :
# spring.cache.ehcache.config=
## The location of the configuration file to use to initialize Infinispan. / default :
# spring.cache.infinispan.config=
## The location of the configuration file to use to initialize the cache manager. The configuration file is dependent of the underlying cache implementation. / default :
# spring.cache.jcache.config=
## Fully qualified name of the CachingProvider implementation to use to retrieve the JSR-107 compliant cache manager. Needed only if more than one JSR-107 implementation is available on the classpath. / default :
# spring.cache.jcache.provider=
## Allow caching null values. / default : TRUE
# spring.cache.redis.cache-null-values=TRUE
## Whether to enable cache statistics. / default : FALSE
# spring.cache.redis.enable-statistics=FALSE
## Key prefix. / default :
# spring.cache.redis.key-prefix=
## Entry expiration. By default the entries never expire. / default :
# spring.cache.redis.time-to-live=
## Whether to use the key prefix when writing to Redis. / default : TRUE
# spring.cache.redis.use-key-prefix=TRUE
## Cache type. By default, auto-detected according to the environment. / default :
# spring.cache.type=


# 3. Mail Properties

## Default MimeMessage encoding. / default : UTF-8
# spring.mail.default-encoding=UTF-8
## SMTP server host. For instance, 'smtp.example.com'. / default :
# spring.mail.host=
## Session JNDI name. When set, takes precedence over other Session settings. / default :
# spring.mail.jndi-name=
## Login password of the SMTP server. / default :
# spring.mail.password=
## SMTP server port. / default :
# spring.mail.port=
## Additional JavaMail Session properties. / default :
# spring.mail.properties.*=
## Protocol used by the SMTP server. / default : smtp
# spring.mail.protocol=smtp
## Whether to test that the mail server is available on startup. / default : FALSE
# spring.mail.test-connection=FALSE
## Login user of the SMTP server. / default :
# spring.mail.username=
## SendGrid API key. / default :
# spring.sendgrid.api-key=
## SendGrid proxy host. / default :
# spring.sendgrid.proxy.host=
## SendGrid proxy port. / default :
# spring.sendgrid.proxy.port=


# 4. JSON Properties

## Format to use when serializing Date objects. / default :
# spring.gson.date-format=
## Whether to disable the escaping of HTML characters such as '<', '>', etc. / default :
# spring.gson.disable-html-escaping=
## Whether to exclude inner classes during serialization. / default :
# spring.gson.disable-inner-class-serialization=
## Whether to enable serialization of complex map keys (i.e. non-primitives). / default :
# spring.gson.enable-complex-map-key-serialization=
## Whether to exclude all fields from consideration for serialization or deserialization that do not have the Expose annotation. / default :
# spring.gson.exclude-fields-without-expose-annotation=
## Naming policy that should be applied to an object's field during serialization and deserialization. / default :
# spring.gson.field-naming-policy=
## Whether to generate non executable JSON by prefixing the output with some special text. / default :
# spring.gson.generate-non-executable-json=
## Whether to be lenient about parsing JSON that doesn't conform to RFC 4627. / default :
# spring.gson.lenient=
## Serialization policy for Long and long types. / default :
# spring.gson.long-serialization-policy=
## Whether to output serialized JSON that fits in a page for pretty printing. / default :
# spring.gson.pretty-printing=
## Whether to serialize null fields. / default :
# spring.gson.serialize-nulls=
## Strategy to use to auto-detect constructor, and in particular behavior with single-argument constructors. / default : default
# spring.jackson.constructor-detector=default
## Date format string or a fully-qualified date format class name. For instance, 'yyyy-MM-dd HH:mm:ss'. / default :
# spring.jackson.date-format=
## Global default setting (if any) for leniency. / default :
# spring.jackson.default-leniency=
## Controls the inclusion of properties during serialization. Configured with one of the values in Jackson's JsonInclude.Include enumeration. / default :
# spring.jackson.default-property-inclusion=
## Jackson on/off features that affect the way Java objects are deserialized. / default :
# spring.jackson.deserialization.*=
## Jackson on/off features for generators. / default :
# spring.jackson.generator.*=
## Locale used for formatting. / default :
# spring.jackson.locale=
## Jackson general purpose on/off features. / default :
# spring.jackson.mapper.*=
## Jackson on/off features for parsers. / default :
# spring.jackson.parser.*=
## One of the constants on Jackson's PropertyNamingStrategies. Can also be a fully-qualified class name of a PropertyNamingStrategy implementation. / default :
# spring.jackson.property-naming-strategy=
## Jackson on/off features that affect the way Java objects are serialized. / default :
# spring.jackson.serialization.*=
## Time zone used when formatting dates. For instance, America/Los_Angeles or GMT+10. / default :
# spring.jackson.time-zone=
## Jackson visibility thresholds that can be used to limit which methods (and fields) are auto-detected. / default :
# spring.jackson.visibility.*=


# 5. Data Properties

## Connection string used to locate the Couchbase cluster. / default :
# spring.couchbase.connection-string=
## Length of time an HTTP connection may remain idle before it is closed and removed from the pool. / default : 4500ms
# spring.couchbase.env.io.idle-http-connection-timeout=4500ms
## Maximum number of sockets per node. / default : 12
# spring.couchbase.env.io.max-endpoints=12
## Minimum number of sockets per node. / default : 1
# spring.couchbase.env.io.min-endpoints=1
## Whether to enable SSL support. Enabled automatically if a keyStore is provided unless specified otherwise. / default :
# spring.couchbase.env.ssl.enabled=
## Path to the JVM key store that holds the certificates. / default :
# spring.couchbase.env.ssl.key-store=
## Password used to access the key store. / default :
# spring.couchbase.env.ssl.key-store-password=
## Timeout for the analytics service. / default : 75s
# spring.couchbase.env.timeouts.analytics=75s
## Bucket connect timeout. / default : 10s
# spring.couchbase.env.timeouts.connect=10s
## Bucket disconnect timeout. / default : 10s
# spring.couchbase.env.timeouts.disconnect=10s
## Timeout for operations on a specific key-value. / default : 2500ms
# spring.couchbase.env.timeouts.key-value=2500ms
## Timeout for operations on a specific key-value with a durability level. / default : 10s
# spring.couchbase.env.timeouts.key-value-durable=10s
## Timeout for the management operations. / default : 75s
# spring.couchbase.env.timeouts.management=75s
## N1QL query operations timeout. / default : 75s
# spring.couchbase.env.timeouts.query=75s
## Timeout for the search service. / default : 75s
# spring.couchbase.env.timeouts.search=75s
## Regular and geospatial view operations timeout. / default : 75s
# spring.couchbase.env.timeouts.view=75s
## Cluster password. / default :
# spring.couchbase.password=
## Cluster username. / default :
# spring.couchbase.username=
## Whether to enable the PersistenceExceptionTranslationPostProcessor. / default : TRUE
# spring.dao.exceptiontranslation.enabled=TRUE
## Compression supported by the Cassandra binary protocol. / default : none
# spring.data.cassandra.compression=none
## Location of the configuration file to use. / default :
# spring.data.cassandra.config=
## Timeout to use when establishing driver connections. / default :
# spring.data.cassandra.connection.connect-timeout=
# spring.data.cassandra.connection.connection-timeout=5s
## Timeout to use for internal queries that run as part of the initialization process, just after a connection is opened. / default : 5s
# spring.data.cassandra.connection.init-query-timeout=5s
## Cluster node addresses in the form 'host:port', or a simple 'host' to use the configured port. / default : [127.0.0.1:9042]
# spring.data.cassandra.contact-points=[127.0.0.1:9042]
## Timeout to use for control queries. / default : 5s
# spring.data.cassandra.controlconnection.timeout=5s
## Keyspace name to use. / default :
# spring.data.cassandra.keyspace-name=
## Datacenter that is considered local. Contact points should be from this datacenter. / default :
# spring.data.cassandra.local-datacenter=
## Login password of the server. / default :
# spring.data.cassandra.password=
## Heartbeat interval after which a message is sent on an idle connection to make sure it's still alive. / default : 30s
# spring.data.cassandra.pool.heartbeat-interval=30s
## Idle timeout before an idle connection is removed. / default : 5s
# spring.data.cassandra.pool.idle-timeout=5s
## Port to use if a contact point does not specify one. / default : 9042
# spring.data.cassandra.port=9042
## Type of Cassandra repositories to enable. / default : auto
# spring.data.cassandra.repositories.type=auto
## Queries consistency level. / default :
# spring.data.cassandra.request.consistency=
## How many rows will be retrieved simultaneously in a single network roundtrip. / default : 5000
# spring.data.cassandra.request.page-size=5000
## Queries serial consistency level. / default :
# spring.data.cassandra.request.serial-consistency=
## How often the throttler attempts to dequeue requests. Set this high enough that each attempt will process multiple entries in the queue, but not delay requests too much. / default :
# spring.data.cassandra.request.throttler.drain-interval=
## Maximum number of requests that are allowed to execute in parallel. / default : 0
# spring.data.cassandra.request.throttler.max-concurrent-requests=0
## Maximum number of requests that can be enqueued when the throttling threshold is exceeded. / default : 0
# spring.data.cassandra.request.throttler.max-queue-size=0
## Maximum allowed request rate. / default : 0
# spring.data.cassandra.request.throttler.max-requests-per-second=0
## Request throttling type. / default : none
# spring.data.cassandra.request.throttler.type=none
## How long the driver waits for a request to complete. / default : 2s
# spring.data.cassandra.request.timeout=2s
## Schema action to take at startup. / default : none
# spring.data.cassandra.schema-action=none
## Name of the Cassandra session. / default :
# spring.data.cassandra.session-name=
## Enable SSL support. / default : FALSE
# spring.data.cassandra.ssl=FALSE
## Login user of the server. / default :
# spring.data.cassandra.username=
## Automatically create views and indexes. Use the meta-data provided by @ViewIndexed, @N1qlPrimaryIndexed and @N1qlSecondaryIndexed. / default : FALSE
# spring.data.couchbase.auto-index=FALSE
## Name of the bucket to connect to. / default :
# spring.data.couchbase.bucket-name=
## Fully qualified name of the FieldNamingStrategy to use. / default :
# spring.data.couchbase.field-naming-strategy=
## Type of Couchbase repositories to enable. / default : auto
# spring.data.couchbase.repositories.type=auto
## Name of the scope used for all collection access. / default :
# spring.data.couchbase.scope-name=
## Name of the field that stores the type information for complex types when using MappingCouchbaseConverter. / default : _class
# spring.data.couchbase.type-key=_class
## Whether to enable Elasticsearch repositories. / default : TRUE
# spring.data.elasticsearch.repositories.enabled=TRUE
## Whether to enable JDBC repositories. / default : TRUE
# spring.data.jdbc.repositories.enabled=TRUE
## Bootstrap mode for JPA repositories. / default : default
# spring.data.jpa.repositories.bootstrap-mode=default
## Whether to enable JPA repositories. / default : TRUE
# spring.data.jpa.repositories.enabled=TRUE
## Whether to enable LDAP repositories. / default : TRUE
# spring.data.ldap.repositories.enabled=TRUE
## Authentication database name. / default :
# spring.data.mongodb.authentication-database=
## Whether to enable auto-index creation. / default :
# spring.data.mongodb.auto-index-creation=
## Database name. / default :
# spring.data.mongodb.database=
## Fully qualified name of the FieldNamingStrategy to use. / default :
# spring.data.mongodb.field-naming-strategy=
## GridFS bucket name. / default :
# spring.data.mongodb.gridfs.bucket=
## GridFS database name. / default :
# spring.data.mongodb.gridfs.database=
## Mongo server host. Cannot be set with URI. / default :
# spring.data.mongodb.host=
## Login password of the mongo server. Cannot be set with URI. / default :
# spring.data.mongodb.password=
## Mongo server port. Cannot be set with URI. / default :
# spring.data.mongodb.port=
## Required replica set name for the cluster. Cannot be set with URI. / default :
# spring.data.mongodb.replica-set-name=
## Type of Mongo repositories to enable. / default : auto
# spring.data.mongodb.repositories.type=auto
## Mongo database URI. Cannot be set with host, port, credentials and replica set name. / default : mongodb://localhost/test
# spring.data.mongodb.uri=mongodb://localhost/test
## Login user of the mongo server. Cannot be set with URI. / default :
# spring.data.mongodb.username=
## Representation to use when converting a UUID to a BSON binary value. / default : java-legacy
# spring.data.mongodb.uuid-representation=java-legacy
## Database name to use. By default, the server decides the default database to use. / default :
# spring.data.neo4j.database=
## Type of Neo4j repositories to enable. / default : auto
# spring.data.neo4j.repositories.type=auto
## Whether to enable R2DBC repositories. / default : TRUE
# spring.data.r2dbc.repositories.enabled=TRUE
## Whether to enable Redis repositories. / default : TRUE
# spring.data.redis.repositories.enabled=TRUE
## Base path to be used by Spring Data REST to expose repository resources. / default :
# spring.data.rest.base-path=
## Content type to use as a default when none is specified. / default :
# spring.data.rest.default-media-type=
## Default size of pages. / default :
# spring.data.rest.default-page-size=
## Strategy to use to determine which repositories get exposed. / default : default
# spring.data.rest.detection-strategy=default
## Whether to enable enum value translation through the Spring Data REST default resource bundle. / default :
# spring.data.rest.enable-enum-translation=
## Name of the URL query string parameter that indicates how many results to return at once. / default :
# spring.data.rest.limit-param-name=
## Maximum size of pages. / default :
# spring.data.rest.max-page-size=
## Name of the URL query string parameter that indicates what page to return. / default :
# spring.data.rest.page-param-name=
## Whether to return a response body after creating an entity. / default :
# spring.data.rest.return-body-on-create=
## Whether to return a response body after updating an entity. / default :
# spring.data.rest.return-body-on-update=
## Name of the URL query string parameter that indicates what direction to sort results. / default :
# spring.data.rest.sort-param-name=
## Solr host. Ignored if zk-host is set. / default : http://127.0.0.1:8983/solr
# spring.data.solr.host=http://127.0.0.1:8983/solr
## ZooKeeper host address in the form HOST:PORT. / default :
# spring.data.solr.zk-host=
## Default page size. / default : 20
# spring.data.web.pageable.default-page-size=20
## Maximum page size to be accepted. / default : 2000
# spring.data.web.pageable.max-page-size=2000
## Whether to expose and assume 1-based page number indexes. Defaults to false, meaning a page number of 0 in the request equals the first page. / default : FALSE
# spring.data.web.pageable.one-indexed-parameters=FALSE
## Page index parameter name. / default : page
# spring.data.web.pageable.page-parameter=page
## General prefix to be prepended to the page number and page size parameters. / default :
# spring.data.web.pageable.prefix=
## Delimiter to be used between the qualifier and the actual page number and size properties. / default : _
# spring.data.web.pageable.qualifier-delimiter=_
## Page size parameter name. / default : size
# spring.data.web.pageable.size-parameter=size
## Sort parameter name. / default : sort
# spring.data.web.sort.sort-parameter=sort
## Commons DBCP2 specific settings bound to an instance of DBCP2's BasicDataSource / default :
# spring.datasource.dbcp2.abandoned-usage-tracking=
# spring.datasource.dbcp2.access-to-underlying-connection-allowed=
# spring.datasource.dbcp2.auto-commit-on-return=
# spring.datasource.dbcp2.cache-state=
# spring.datasource.dbcp2.clear-statement-pool-on-return=
# spring.datasource.dbcp2.connection-factory-class-name=
# spring.datasource.dbcp2.connection-init-sqls=
# spring.datasource.dbcp2.default-auto-commit=
# spring.datasource.dbcp2.default-catalog=
# spring.datasource.dbcp2.default-query-timeout=
# spring.datasource.dbcp2.default-read-only=
# spring.datasource.dbcp2.default-schema=
# spring.datasource.dbcp2.default-transaction-isolation=
# spring.datasource.dbcp2.disconnection-sql-codes=
# spring.datasource.dbcp2.driver=
# spring.datasource.dbcp2.driver-class-name=
# spring.datasource.dbcp2.eviction-policy-class-name=
# spring.datasource.dbcp2.fast-fail-validation=
# spring.datasource.dbcp2.initial-size=
# spring.datasource.dbcp2.jmx-name=
# spring.datasource.dbcp2.lifo=
# spring.datasource.dbcp2.log-abandoned=
# spring.datasource.dbcp2.log-expired-connections=
# spring.datasource.dbcp2.login-timeout=
# spring.datasource.dbcp2.max-conn-lifetime-millis=
# spring.datasource.dbcp2.max-idle=
# spring.datasource.dbcp2.max-open-prepared-statements=
# spring.datasource.dbcp2.max-total=
# spring.datasource.dbcp2.max-wait-millis=
# spring.datasource.dbcp2.min-evictable-idle-time-millis=
# spring.datasource.dbcp2.min-idle=
# spring.datasource.dbcp2.num-tests-per-eviction-run=
# spring.datasource.dbcp2.password=
# spring.datasource.dbcp2.pool-prepared-statements=
# spring.datasource.dbcp2.remove-abandoned-on-borrow=
# spring.datasource.dbcp2.remove-abandoned-on-maintenance=
# spring.datasource.dbcp2.remove-abandoned-timeout=
# spring.datasource.dbcp2.rollback-on-return=
# spring.datasource.dbcp2.soft-min-evictable-idle-time-millis=
# spring.datasource.dbcp2.test-on-borrow=
# spring.datasource.dbcp2.test-on-create=
# spring.datasource.dbcp2.test-on-return=
# spring.datasource.dbcp2.test-while-idle=
# spring.datasource.dbcp2.time-between-eviction-runs-millis=
# spring.datasource.dbcp2.url=
# spring.datasource.dbcp2.username=
# spring.datasource.dbcp2.validation-query=
# spring.datasource.dbcp2.validation-query-timeout=
## Fully qualified name of the JDBC driver. Auto-detected based on the URL by default. / default :
# spring.datasource.driver-class-name=
## Connection details for an embedded database. Defaults to the most suitable embedded database that is available on the classpath. / default :
# spring.datasource.embedded-database-connection=
## Whether to generate a random datasource name. / default : TRUE
# spring.datasource.generate-unique-name=TRUE
## Hikari specific settings bound to an instance of Hikari's HikariDataSource / default :
# spring.datasource.hikari.allow-pool-suspension=
# spring.datasource.hikari.auto-commit=
# spring.datasource.hikari.catalog=
# spring.datasource.hikari.connection-init-sql=
# spring.datasource.hikari.connection-test-query=
# spring.datasource.hikari.connection-timeout=
# spring.datasource.hikari.data-source-class-name=
# spring.datasource.hikari.data-source-j-n-d-i=
# spring.datasource.hikari.data-source-properties=
# spring.datasource.hikari.driver-class-name=
# spring.datasource.hikari.exception-override-class-name=
# spring.datasource.hikari.health-check-properties=
# spring.datasource.hikari.health-check-registry=
# spring.datasource.hikari.idle-timeout=
# spring.datasource.hikari.initialization-fail-timeout=
# spring.datasource.hikari.isolate-internal-queries=
# spring.datasource.hikari.jdbc-url=
# spring.datasource.hikari.keepalive-time=
# spring.datasource.hikari.leak-detection-threshold=
# spring.datasource.hikari.login-timeout=
# spring.datasource.hikari.max-lifetime=
# spring.datasource.hikari.maximum-pool-size=
# spring.datasource.hikari.metric-registry=
# spring.datasource.hikari.metrics-tracker-factory=
# spring.datasource.hikari.minimum-idle=
# spring.datasource.hikari.password=
# spring.datasource.hikari.pool-name=
# spring.datasource.hikari.read-only=
# spring.datasource.hikari.register-mbeans=
# spring.datasource.hikari.scheduled-executor=
# spring.datasource.hikari.schema=
# spring.datasource.hikari.transaction-isolation=
# spring.datasource.hikari.username=
# spring.datasource.hikari.validation-timeout=
## JNDI location of the datasource. Class, url, username and password are ignored when set. / default :
# spring.datasource.jndi-name=
## Datasource name to use if generate-unique-name is false. Defaults to testdb when using an embedded database, otherwise null. / default :
# spring.datasource.name=
## Oracle UCP specific settings bound to an instance of Oracle UCP's PoolDataSource / default :
# spring.datasource.oracleucp.abandoned-connection-timeout=
# spring.datasource.oracleucp.connection-factory-class-name=
# spring.datasource.oracleucp.connection-factory-properties=
# spring.datasource.oracleucp.connection-harvest-max-count=
# spring.datasource.oracleucp.connection-harvest-trigger-count=
# spring.datasource.oracleucp.connection-labeling-high-cost=
# spring.datasource.oracleucp.connection-pool-name=
# spring.datasource.oracleucp.connection-properties=
# spring.datasource.oracleucp.connection-repurpose-threshold=
# spring.datasource.oracleucp.connection-validation-timeout=
# spring.datasource.oracleucp.connection-wait-timeout=
# spring.datasource.oracleucp.data-source-name=
# spring.datasource.oracleucp.database-name=
# spring.datasource.oracleucp.description=
# spring.datasource.oracleucp.fast-connection-failover-enabled=
# spring.datasource.oracleucp.high-cost-connection-reuse-threshold=
# spring.datasource.oracleucp.inactive-connection-timeout=
# spring.datasource.oracleucp.initial-pool-size=
# spring.datasource.oracleucp.login-timeout=
# spring.datasource.oracleucp.max-connection-reuse-count=
# spring.datasource.oracleucp.max-connection-reuse-time=
# spring.datasource.oracleucp.max-connections-per-shard=
# spring.datasource.oracleucp.max-idle-time=
# spring.datasource.oracleucp.max-pool-size=
# spring.datasource.oracleucp.max-statements=
# spring.datasource.oracleucp.min-pool-size=
# spring.datasource.oracleucp.network-protocol=
# spring.datasource.oracleucp.o-n-s-configuration=
# spring.datasource.oracleucp.pdb-roles=
# spring.datasource.oracleucp.port-number=
# spring.datasource.oracleucp.property-cycle=
# spring.datasource.oracleucp.query-timeout=
# spring.datasource.oracleucp.read-only-instance-allowed=
# spring.datasource.oracleucp.role-name=
# spring.datasource.oracleucp.s-q-l-for-validate-connection=
# spring.datasource.oracleucp.seconds-to-trust-idle-connection=
# spring.datasource.oracleucp.server-name=
# spring.datasource.oracleucp.sharding-mode=
# spring.datasource.oracleucp.time-to-live-connection-timeout=
# spring.datasource.oracleucp.timeout-check-interval=
# spring.datasource.oracleucp.u-r-l=
# spring.datasource.oracleucp.user=
# spring.datasource.oracleucp.validate-connection-on-borrow=
# Login password of the database. / default :
# spring.datasource.password=
## Tomcat datasource specific settings bound to an instance of Tomcat JDBC's DataSource / default :
# spring.datasource.tomcat.abandon-when-percentage-full=
# spring.datasource.tomcat.access-to-underlying-connection-allowed=
# spring.datasource.tomcat.alternate-username-allowed=
# spring.datasource.tomcat.commit-on-return=
# spring.datasource.tomcat.connection-properties=
# spring.datasource.tomcat.data-source=
# spring.datasource.tomcat.data-source-j-n-d-i=
# spring.datasource.tomcat.db-properties=
# spring.datasource.tomcat.default-auto-commit=
# spring.datasource.tomcat.default-catalog=
# spring.datasource.tomcat.default-read-only=
# spring.datasource.tomcat.default-transaction-isolation=
# spring.datasource.tomcat.driver-class-name=
# spring.datasource.tomcat.fair-queue=
# spring.datasource.tomcat.ignore-exception-on-pre-load=
# spring.datasource.tomcat.init-s-q-l=
# spring.datasource.tomcat.initial-size=
# spring.datasource.tomcat.jdbc-interceptors=
# spring.datasource.tomcat.jmx-enabled=
# spring.datasource.tomcat.log-abandoned=
# spring.datasource.tomcat.log-validation-errors=
# spring.datasource.tomcat.login-timeout=
# spring.datasource.tomcat.max-active=
# spring.datasource.tomcat.max-age=
# spring.datasource.tomcat.max-idle=
# spring.datasource.tomcat.max-wait=
# spring.datasource.tomcat.min-evictable-idle-time-millis=
# spring.datasource.tomcat.min-idle=
# spring.datasource.tomcat.name=
# spring.datasource.tomcat.num-tests-per-eviction-run=
# spring.datasource.tomcat.password=
# spring.datasource.tomcat.propagate-interrupt-state=
# spring.datasource.tomcat.remove-abandoned=
# spring.datasource.tomcat.remove-abandoned-timeout=
# spring.datasource.tomcat.rollback-on-return=
# spring.datasource.tomcat.suspect-timeout=
# spring.datasource.tomcat.test-on-borrow=
# spring.datasource.tomcat.test-on-connect=
# spring.datasource.tomcat.test-on-return=
# spring.datasource.tomcat.test-while-idle=
# spring.datasource.tomcat.time-between-eviction-runs-millis=
# spring.datasource.tomcat.url=
# spring.datasource.tomcat.use-disposable-connection-facade=
# spring.datasource.tomcat.use-equals=
# spring.datasource.tomcat.use-lock=
# spring.datasource.tomcat.use-statement-facade=
# spring.datasource.tomcat.username=
# spring.datasource.tomcat.validation-interval=
# spring.datasource.tomcat.validation-query=
# spring.datasource.tomcat.validation-query-timeout=
# spring.datasource.tomcat.validator-class-name=
## Fully qualified name of the connection pool implementation to use. By default, it is auto-detected from the classpath. / default :
# spring.datasource.type=
## JDBC URL of the database. / default :
# spring.datasource.url=
## Login username of the database. / default :
# spring.datasource.username=
## XA datasource fully qualified name. / default :
# spring.datasource.xa.data-source-class-name=
## Properties to pass to the XA data source. / default :
# spring.datasource.xa.properties.*=
## Connection timeout used when communicating with Elasticsearch. / default : 1s
# spring.elasticsearch.connection-timeout=1s
## Password for authentication with Elasticsearch. / default :
# spring.elasticsearch.password=
## Prefix added to the path of every request sent to Elasticsearch. / default :
# spring.elasticsearch.path-prefix=
## Delay of a sniff execution scheduled after a failure. / default : 1m
# spring.elasticsearch.restclient.sniffer.delay-after-failure=1m
## Interval between consecutive ordinary sniff executions. / default : 5m
# spring.elasticsearch.restclient.sniffer.interval=5m
## Socket timeout used when communicating with Elasticsearch. / default : 30s
# spring.elasticsearch.socket-timeout=30s
## Comma-separated list of the Elasticsearch instances to use. / default : [http://localhost:9200]
# spring.elasticsearch.uris=[http://localhost:9200]
## Username for authentication with Elasticsearch. / default :
# spring.elasticsearch.username=
## Limit on the number of bytes that can be buffered whenever the input stream needs to be aggregated. / default :
# spring.elasticsearch.webclient.max-in-memory-size=
## Whether to enable the console. / default : FALSE
# spring.h2.console.enabled=FALSE
## Path at which the console is available. / default : /h2-console
# spring.h2.console.path=/h2-console
## Whether to enable trace output. / default : FALSE
# spring.h2.console.settings.trace=FALSE
## Password to access preferences and tools of H2 Console. / default :
# spring.h2.console.settings.web-admin-password=
## Whether to enable remote access. / default : FALSE
# spring.h2.console.settings.web-allow-others=FALSE
## Login password. / default :
# spring.influx.password=
## URL of the InfluxDB instance to which to connect. / default :
# spring.influx.url=
## Login user. / default :
# spring.influx.user=
## Number of rows that should be fetched from the database when more rows are needed. Use -1 to use the JDBC driver's default configuration. / default : -1
# spring.jdbc.template.fetch-size=-1
## Maximum number of rows. Use -1 to use the JDBC driver's default configuration. / default : -1
# spring.jdbc.template.max-rows=-1
## Query timeout. Default is to use the JDBC driver's default configuration. If a duration suffix is not specified, seconds will be used. / default :
# spring.jdbc.template.query-timeout=
## SQL dialect to use. Auto-detected by default. / default :
# spring.jooq.sql-dialect=
## Target database to operate on, auto-detected by default. Can be alternatively set using the databasePlatform property. / default :
# spring.jpa.database=
## Name of the target database to operate on, auto-detected by default. Can be alternatively set using the Database enum. / default :
# spring.jpa.database-platform=
# spring.jpa.defer-datasource-initialization=FALSE
## Whether to initialize the schema on startup. / default : FALSE
# spring.jpa.generate-ddl=FALSE
## DDL mode. This is actually a shortcut for the hibernate.hbm2ddl.auto property. Defaults to create-drop when using an embedded database and no schema manager was detected. Otherwise, defaults to none. / default :
# spring.jpa.hibernate.ddl-auto=
## Fully qualified name of the implicit naming strategy. / default :
# spring.jpa.hibernate.naming.implicit-strategy=
## Fully qualified name of the physical naming strategy. / default :
# spring.jpa.hibernate.naming.physical-strategy=
## Whether to use Hibernate's newer IdentifierGenerator for AUTO, TABLE and SEQUENCE. This is actually a shortcut for the hibernate.id.new_generator_mappings property. When not specified will default to true. / default :
# spring.jpa.hibernate.use-new-id-generator-mappings=
## Mapping resources (equivalent to mapping-file entries in persistence.xml). / default :
# spring.jpa.mapping-resources=
## Register OpenEntityManagerInViewInterceptor. Binds a JPA EntityManager to the thread for the entire processing of the request. / default : TRUE
# spring.jpa.open-in-view=TRUE
## Additional native properties to set on the JPA provider. / default :
# spring.jpa.properties.*=
## Whether to enable logging of SQL statements. / default : FALSE
# spring.jpa.show-sql=FALSE
## Whether read-only operations should use an anonymous environment. Disabled by default unless a username is set. / default :
# spring.ldap.anonymous-read-only=
## Base suffix from which all operations should originate. / default :
# spring.ldap.base=
## LDAP specification settings. / default :
# spring.ldap.base-environment.*=
## List of base DNs. / default :
# spring.ldap.embedded.base-dn=
## Embedded LDAP password. / default :
# spring.ldap.embedded.credential.password=
## Embedded LDAP username. / default :
# spring.ldap.embedded.credential.username=
## Schema (LDIF) script resource reference. / default : classpath:schema.ldif
# spring.ldap.embedded.ldif=classpath:schema.ldif
## Embedded LDAP port. / default : 0
# spring.ldap.embedded.port=0
## Whether to enable LDAP schema validation. / default : TRUE
# spring.ldap.embedded.validation.enabled=TRUE
## Path to the custom schema. / default :
# spring.ldap.embedded.validation.schema=
## Login password of the server. / default :
# spring.ldap.password=
## Whether NameNotFoundException should be ignored in searches via the LdapTemplate. / default : FALSE
# spring.ldap.template.ignore-name-not-found-exception=FALSE
## Whether PartialResultException should be ignored in searches via the LdapTemplate. / default : FALSE
# spring.ldap.template.ignore-partial-result-exception=FALSE
## Whether SizeLimitExceededException should be ignored in searches via the LdapTemplate. / default : TRUE
# spring.ldap.template.ignore-size-limit-exceeded-exception=TRUE
## LDAP URLs of the server. / default :
# spring.ldap.urls=
## Login username of the server. / default :
# spring.ldap.username=
## Comma-separated list of features to enable. Uses the defaults of the configured version by default. / default : [sync_delay]
# spring.mongodb.embedded.features=[sync_delay]
## Directory used for data storage. / default :
# spring.mongodb.embedded.storage.database-dir=
## Maximum size of the oplog. / default :
# spring.mongodb.embedded.storage.oplog-size=
## Name of the replica set. / default :
# spring.mongodb.embedded.storage.repl-set-name=
## Version of Mongo to use. / default :
# spring.mongodb.embedded.version=
## Kerberos ticket for connecting to the database. Mutual exclusive with a given username. / default :
# spring.neo4j.authentication.kerberos-ticket=
## Login password of the server. / default :
# spring.neo4j.authentication.password=
## Realm to connect to. / default :
# spring.neo4j.authentication.realm=
## Login user of the server. / default :
# spring.neo4j.authentication.username=
## Timeout for borrowing connections from the pool. / default : 30s
# spring.neo4j.connection-timeout=30s
## Maximum time transactions are allowed to retry. / default : 30s
# spring.neo4j.max-transaction-retry-time=30s
## Acquisition of new connections will be attempted for at most configured timeout. / default : 60s
# spring.neo4j.pool.connection-acquisition-timeout=60s
## Pooled connections that have been idle in the pool for longer than this threshold will be tested before they are used again. / default :
# spring.neo4j.pool.idle-time-before-connection-test=
## Whether to log leaked sessions. / default : FALSE
# spring.neo4j.pool.log-leaked-sessions=FALSE
## Pooled connections older than this threshold will be closed and removed from the pool. / default : 1h
# spring.neo4j.pool.max-connection-lifetime=1h
## Maximum amount of connections in the connection pool towards a single database. / default : 100
# spring.neo4j.pool.max-connection-pool-size=100
## Whether to enable metrics. / default : FALSE
# spring.neo4j.pool.metrics-enabled=FALSE
## Path to the file that holds the trusted certificates. / default :
# spring.neo4j.security.cert-file=
## Whether the driver should use encrypted traffic. / default : FALSE
# spring.neo4j.security.encrypted=FALSE
## Whether hostname verification is required. / default : TRUE
# spring.neo4j.security.hostname-verification-enabled=TRUE
## Trust strategy to use. / default : trust-system-ca-signed-certificates
# spring.neo4j.security.trust-strategy=trust-system-ca-signed-certificates
## URI used by the driver. / default : bolt://localhost:7687
# spring.neo4j.uri=bolt://localhost:7687
## Whether to generate a random database name. Ignore any configured name when enabled. / default : FALSE
# spring.r2dbc.generate-unique-name=FALSE
## Database name. Set if no name is specified in the url. Default to testdb when using an embedded database. / default :
# spring.r2dbc.name=
## Login password of the database. Set if no password is specified in the url. / default :
# spring.r2dbc.password=
## Whether pooling is enabled. Requires r2dbc-pool. / default : TRUE
# spring.r2dbc.pool.enabled=TRUE
## Initial connection pool size. / default : 10
# spring.r2dbc.pool.initial-size=10
## Maximum time to acquire a connection from the pool. By default, wait indefinitely. / default :
# spring.r2dbc.pool.max-acquire-time=
## Maximum time to wait to create a new connection. By default, wait indefinitely. / default :
# spring.r2dbc.pool.max-create-connection-time=
## Maximum amount of time that a connection is allowed to sit idle in the pool. / default : 30m
# spring.r2dbc.pool.max-idle-time=30m
## Maximum lifetime of a connection in the pool. By default, connections have an infinite lifetime. / default :
# spring.r2dbc.pool.max-life-time=
## Maximal connection pool size. / default : 10
# spring.r2dbc.pool.max-size=10
## Validation depth. / default : local
# spring.r2dbc.pool.validation-depth=local
## Validation query. / default :
# spring.r2dbc.pool.validation-query=
## Additional R2DBC options. / default :
# spring.r2dbc.properties.*=
## R2DBC URL of the database. database name, username, password and pooling options specified in the url take precedence over individual options. / default :
# spring.r2dbc.url=
## Login username of the database. Set if no username is specified in the url. / default :
# spring.r2dbc.username=
## Client name to be set on connections with CLIENT SETNAME. / default :
# spring.redis.client-name=
## Type of client to use. By default, auto-detected according to the classpath. / default :
# spring.redis.client-type=
## Maximum number of redirects to follow when executing commands across the cluster. / default :
# spring.redis.cluster.max-redirects=
## Comma-separated list of host:port pairs to bootstrap from. This represents an initial list of cluster nodes and is required to have at least one entry. / default :
# spring.redis.cluster.nodes=
## Connection timeout. / default :
# spring.redis.connect-timeout=
## Database index used by the connection factory. / default : 0
# spring.redis.database=0
## Redis server host. / default : localhost
# spring.redis.host=localhost
## Whether to enable the pool. Enabled automatically if commons-pool2 is available. With Jedis, pooling is implicitly enabled in sentinel mode and this setting only applies to single node setup. / default :
# spring.redis.jedis.pool.enabled=
## Maximum number of connections that can be allocated by the pool at a given time. Use a negative value for no limit. / default : 8
# spring.redis.jedis.pool.max-active=8
## Maximum number of idle connections in the pool. Use a negative value to indicate an unlimited number of idle connections. / default : 8
# spring.redis.jedis.pool.max-idle=8
## Maximum amount of time a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely. / default : -1ms
# spring.redis.jedis.pool.max-wait=-1ms
## Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if both it and time between eviction runs are positive. / default : 0
# spring.redis.jedis.pool.min-idle=0
## Time between runs of the idle object evictor thread. When positive, the idle object evictor thread starts, otherwise no idle object eviction is performed. / default :
# spring.redis.jedis.pool.time-between-eviction-runs=
## Whether adaptive topology refreshing using all available refresh triggers should be used. / default : FALSE
# spring.redis.lettuce.cluster.refresh.adaptive=FALSE
## Whether to discover and query all cluster nodes for obtaining the cluster topology. When set to false, only the initial seed nodes are used as sources for topology discovery. / default : TRUE
# spring.redis.lettuce.cluster.refresh.dynamic-refresh-sources=TRUE
## Cluster topology refresh period. / default :
# spring.redis.lettuce.cluster.refresh.period=
## Whether to enable the pool. Enabled automatically if commons-pool2 is available. With Jedis, pooling is implicitly enabled in sentinel mode and this setting only applies to single node setup. / default :
# spring.redis.lettuce.pool.enabled=
## Maximum number of connections that can be allocated by the pool at a given time. Use a negative value for no limit. / default : 8
# spring.redis.lettuce.pool.max-active=8
## Maximum number of idle connections in the pool. Use a negative value to indicate an unlimited number of idle connections. / default : 8
# spring.redis.lettuce.pool.max-idle=8
## Maximum amount of time a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely. / default : -1ms
# spring.redis.lettuce.pool.max-wait=-1ms
## Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if both it and time between eviction runs are positive. / default : 0
# spring.redis.lettuce.pool.min-idle=0
## Time between runs of the idle object evictor thread. When positive, the idle object evictor thread starts, otherwise no idle object eviction is performed. / default :
# spring.redis.lettuce.pool.time-between-eviction-runs=
## Shutdown timeout. / default : 100ms
# spring.redis.lettuce.shutdown-timeout=100ms
## Login password of the redis server. / default :
# spring.redis.password=
## Redis server port. / default : 6379
# spring.redis.port=6379
## Name of the Redis server. / default :
# spring.redis.sentinel.master=
## Comma-separated list of host:port pairs. / default :
# spring.redis.sentinel.nodes=
## Password for authenticating with sentinel(s). / default :
# spring.redis.sentinel.password=
## Whether to enable SSL support. / default : FALSE
# spring.redis.ssl=FALSE
## Read timeout. / default :
# spring.redis.timeout=
## Connection URL. Overrides host, port, and password. User is ignored. Example: redis://user:password@example.com:6379 / default :
# spring.redis.url=
## Login username of the redis server. / default :
# spring.redis.username=


# 6. Transaction Properties=

## Timeout, in seconds, for borrowing connections from the pool. / default : 30
# spring.jta.atomikos.connectionfactory.borrow-connection-timeout=30
## Whether to ignore the transacted flag when creating session. / default : TRUE
# spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag=TRUE
## Whether local transactions are desired. / default : FALSE
# spring.jta.atomikos.connectionfactory.local-transaction-mode=FALSE
## Time, in seconds, between runs of the pool's maintenance thread. / default : 60
# spring.jta.atomikos.connectionfactory.maintenance-interval=60
## Time, in seconds, after which connections are cleaned up from the pool. / default : 60
# spring.jta.atomikos.connectionfactory.max-idle-time=60
## Time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit. / default : 0
# spring.jta.atomikos.connectionfactory.max-lifetime=0
## Maximum size of the pool. / default : 1
# spring.jta.atomikos.connectionfactory.max-pool-size=1
## Minimum size of the pool. / default : 1
# spring.jta.atomikos.connectionfactory.min-pool-size=1
## Reap timeout, in seconds, for borrowed connections. 0 denotes no limit. / default : 0
# spring.jta.atomikos.connectionfactory.reap-timeout=0
## Unique name used to identify the resource during recovery. / default : jmsConnectionFactory
# spring.jta.atomikos.connectionfactory.unique-resource-name=jmsConnectionFactory
## Vendor-specific implementation of XAConnectionFactory. / default :
# spring.jta.atomikos.connectionfactory.xa-connection-factory-class-name=
## Vendor-specific XA properties. / default :
# spring.jta.atomikos.connectionfactory.xa-properties=
## Timeout, in seconds, for borrowing connections from the pool. / default : 30
# spring.jta.atomikos.datasource.borrow-connection-timeout=30
## Whether to use concurrent connection validation. / default : TRUE
# spring.jta.atomikos.datasource.concurrent-connection-validation=TRUE
## Default isolation level of connections provided by the pool. / default :
# spring.jta.atomikos.datasource.default-isolation-level=
## Timeout, in seconds, for establishing a database connection. / default : 0
# spring.jta.atomikos.datasource.login-timeout=0
## Time, in seconds, between runs of the pool's maintenance thread. / default : 60
# spring.jta.atomikos.datasource.maintenance-interval=60
## Time, in seconds, after which connections are cleaned up from the pool. / default : 60
# spring.jta.atomikos.datasource.max-idle-time=60
## Time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit. / default : 0
# spring.jta.atomikos.datasource.max-lifetime=0
## Maximum size of the pool. / default : 1
# spring.jta.atomikos.datasource.max-pool-size=1
## Minimum size of the pool. / default : 1
# spring.jta.atomikos.datasource.min-pool-size=1
## Reap timeout, in seconds, for borrowed connections. 0 denotes no limit. / default : 0
# spring.jta.atomikos.datasource.reap-timeout=0
## SQL query or statement used to validate a connection before returning it. / default :
# spring.jta.atomikos.datasource.test-query=
## Unique name used to identify the resource during recovery. / default : dataSource
# spring.jta.atomikos.datasource.unique-resource-name=dataSource
## Vendor-specific implementation of XAConnectionFactory. / default :
# spring.jta.atomikos.datasource.xa-data-source-class-name=
## Vendor-specific XA properties. / default :
# spring.jta.atomikos.datasource.xa-properties=
## Specify whether sub-transactions are allowed. / default : TRUE
# spring.jta.atomikos.properties.allow-sub-transactions=TRUE
## Interval between checkpoints, expressed as the number of log writes between two checkpoints. A checkpoint reduces the log file size at the expense of adding some overhead in the runtime. / default : 500
# spring.jta.atomikos.properties.checkpoint-interval=500
## Default timeout for JTA transactions. / default : 10000ms
# spring.jta.atomikos.properties.default-jta-timeout=10000ms
## How long should normal shutdown (no-force) wait for transactions to complete. / default :
# spring.jta.atomikos.properties.default-max-wait-time-on-shutdown=
## Whether to enable disk logging. / default : TRUE
# spring.jta.atomikos.properties.enable-logging=TRUE
## Whether a VM shutdown should trigger forced shutdown of the transaction core. / default : FALSE
# spring.jta.atomikos.properties.force-shutdown-on-vm-exit=FALSE
## Directory in which the log files should be stored. Defaults to the current working directory. / default :
# spring.jta.atomikos.properties.log-base-dir=
## Transactions log file base name. / default : tmlog
# spring.jta.atomikos.properties.log-base-name=tmlog
## Maximum number of active transactions. / default : 50
# spring.jta.atomikos.properties.max-actives=50
## Maximum timeout that can be allowed for transactions. / default : 300000ms
# spring.jta.atomikos.properties.max-timeout=300000ms
## Delay between two recovery scans. / default : 10000ms
# spring.jta.atomikos.properties.recovery.delay=10000ms
## Delay after which recovery can cleanup pending ('orphaned') log entries. / default : 86400000ms
# spring.jta.atomikos.properties.recovery.forget-orphaned-log-entries-delay=86400000ms
## Number of retry attempts to commit the transaction before throwing an exception. / default : 5
# spring.jta.atomikos.properties.recovery.max-retries=5
## Delay between retry attempts. / default : 10000ms
# spring.jta.atomikos.properties.recovery.retry-interval=10000ms
## Whether sub-transactions should be joined when possible. / default : TRUE
# spring.jta.atomikos.properties.serial-jta-transactions=TRUE
## Transaction manager implementation that should be started. / default :
# spring.jta.atomikos.properties.service=
## Whether to use different (and concurrent) threads for two-phase commit on the participating resources. / default : FALSE
# spring.jta.atomikos.properties.threaded-two-phase-commit=FALSE
## The transaction manager's unique name. Defaults to the machine's IP address. If you plan to run more than one transaction manager against one database you must set this property to a unique value. / default :
# spring.jta.atomikos.properties.transaction-manager-unique-name=
## Whether to enable JTA support. / default : TRUE
# spring.jta.enabled=TRUE
## Transaction logs directory. / default :
# spring.jta.log-dir=
## Transaction manager unique identifier. / default :
# spring.jta.transaction-manager-id=
## Default transaction timeout. If a duration suffix is not specified, seconds will be used. / default :
# spring.transaction.default-timeout=
## Whether to roll back on commit failures. / default :
# spring.transaction.rollback-on-commit-failure=


# 7. Data Migration Properties

## Description to tag an existing schema with when applying a baseline. / default : << Flyway Baseline >>
# spring.flyway.baseline-description=<< Flyway Baseline >>
## Filename prefix for baseline migrations. Requires Flyway Teams. / default : B
# spring.flyway.baseline-migration-prefix=B
## Whether to automatically call baseline when migrating a non-empty schema. / default : FALSE
# spring.flyway.baseline-on-migrate=FALSE
## Version to tag an existing schema with when executing baseline. / default : 1
# spring.flyway.baseline-version=1
## Whether to batch SQL statements when executing them. Requires Flyway Teams. / default :
# spring.flyway.batch=
## Migrations that Flyway should consider when migrating or undoing. When empty all available migrations are considered. Requires Flyway Teams. / default :
# spring.flyway.cherry-pick=
## Whether to disable cleaning of the database. / default : FALSE
# spring.flyway.clean-disabled=FALSE
## Whether to automatically call clean when a validation error occurs. / default : FALSE
# spring.flyway.clean-on-validation-error=FALSE
## Maximum number of retries when attempting to connect to the database. / default : 0
# spring.flyway.connect-retries=0
## Maximum time between retries when attempting to connect to the database. If a duration suffix is not specified, seconds will be used. / default : 120
# spring.flyway.connect-retries-interval=120
## Whether Flyway should attempt to create the schemas specified in the schemas property. / default : TRUE
# spring.flyway.create-schemas=TRUE
## Default schema name managed by Flyway (case-sensitive). / default :
# spring.flyway.default-schema=
## Whether to attempt to automatically detect SQL migration file encoding. Requires Flyway Teams. / default :
# spring.flyway.detect-encoding=
## Fully qualified name of the JDBC driver. Auto-detected based on the URL by default. / default :
# spring.flyway.driver-class-name=
## Whether to enable flyway. / default : TRUE
# spring.flyway.enabled=TRUE
## Encoding of SQL migrations. / default : UTF-8
# spring.flyway.encoding=UTF-8
## Rules for the built-in error handling to override specific SQL states and error codes. Requires Flyway Teams. / default :
# spring.flyway.error-overrides=
## Whether to fail if a location of migration scripts doesn't exist. / default : FALSE
# spring.flyway.fail-on-missing-locations=FALSE
## Whether to group all pending migrations together in the same transaction when applying them. / default : FALSE
# spring.flyway.group=FALSE
## Ignore migrations that match this comma-separated list of patterns when validating migrations. Requires Flyway Teams. / default :
# spring.flyway.ignore-migration-patterns=
## SQL statements to execute to initialize a connection immediately after obtaining it. / default :
# spring.flyway.init-sqls=
## Username recorded in the schema history table as having applied the migration. / default :
# spring.flyway.installed-by=
## Properties to pass to the JDBC driver. Requires Flyway Teams. / default :
# spring.flyway.jdbc-properties.*=
## Path of the Kerberos config file. Requires Flyway Teams. / default :
# spring.flyway.kerberos-config-file=
## Licence key for Flyway Teams. / default :
# spring.flyway.license-key=
## Locations of migrations scripts. Can contain the special {vendor} placeholder to use vendor-specific locations. / default : [classpath:db/migration]
# spring.flyway.locations=[classpath:db/migration]
## Maximum number of retries when trying to obtain a lock. / default : 50
# spring.flyway.lock-retry-count=50
## Whether to allow mixing transactional and non-transactional statements within the same migration. / default : FALSE
# spring.flyway.mixed=FALSE
## Path of the Oracle Kerberos cache file. Requires Flyway Teams. / default :
# spring.flyway.oracle-kerberos-cache-file=
## Whether to enable support for Oracle SQL*Plus commands. Requires Flyway Teams. / default :
# spring.flyway.oracle-sqlplus=
## Whether to issue a warning rather than an error when a not-yet-supported Oracle SQL*Plus statement is encountered. Requires Flyway Teams. / default :
# spring.flyway.oracle-sqlplus-warn=
## Location of the Oracle Wallet, used to sign-in to the database automatically. Requires Flyway Teams. / default :
# spring.flyway.oracle-wallet-location=
## Whether to allow migrations to be run out of order. / default : FALSE
# spring.flyway.out-of-order=FALSE
## Whether Flyway should output a table with the results of queries when executing migrations. Requires Flyway Teams. / default :
# spring.flyway.output-query-results=
## Login password of the database to migrate. / default :
# spring.flyway.password=
## Prefix of placeholders in migration scripts. / default : ${
# spring.flyway.placeholder-prefix=${
## Perform placeholder replacement in migration scripts. / default : TRUE
# spring.flyway.placeholder-replacement=TRUE
## Suffix of placeholders in migration scripts. / default : }
# spring.flyway.placeholder-suffix=}
## Placeholders and their replacements to apply to sql migration scripts. / default :
# spring.flyway.placeholders.*=
## File name prefix for repeatable SQL migrations. / default : R
# spring.flyway.repeatable-sql-migration-prefix=R
## Scheme names managed by Flyway (case-sensitive). / default :
# spring.flyway.schemas=
## Prefix of placeholders in migration scripts. / default : FP__
# spring.flyway.script-placeholder-prefix=FP__
## Suffix of placeholders in migration scripts. / default : __
# spring.flyway.script-placeholder-suffix=__
## Whether to skip default callbacks. If true, only custom callbacks are used. / default : FALSE
# spring.flyway.skip-default-callbacks=FALSE
## Whether to skip default resolvers. If true, only custom resolvers are used. / default : FALSE
# spring.flyway.skip-default-resolvers=FALSE
## Whether Flyway should skip executing the contents of the migrations and only update the schema history table. Requires Flyway teams. / default :
# spring.flyway.skip-executing-migrations=
## File name prefix for SQL migrations. / default : V
# spring.flyway.sql-migration-prefix=V
## File name separator for SQL migrations. / default : __
# spring.flyway.sql-migration-separator=__
## File name suffix for SQL migrations. / default : [.sql]
# spring.flyway.sql-migration-suffixes=[.sql]
## Path to the SQL Server Kerberos login file. Requires Flyway Teams. / default :
# spring.flyway.sql-server-kerberos-login-file=
## Whether to stream SQL migrations when executing them. Requires Flyway Teams. / default :
# spring.flyway.stream=
## Name of the schema history table that will be used by Flyway. / default : flyway_schema_history
# spring.flyway.table=flyway_schema_history
## Tablespace in which the schema history table is created. Ignored when using a database that does not support tablespaces. Defaults to the default tablespace of the connection used by Flyway. / default :
# spring.flyway.tablespace=
## Target version up to which migrations should be considered. / default :
# spring.flyway.target=
## JDBC url of the database to migrate. If not set, the primary configured data source is used. / default :
# spring.flyway.url=
## Login user of the database to migrate. / default :
# spring.flyway.user=
## Whether to validate migrations and callbacks whose scripts do not obey the correct naming convention. / default : FALSE
# spring.flyway.validate-migration-naming=FALSE
## Whether to automatically call validate when performing a migration. / default : TRUE
# spring.flyway.validate-on-migrate=TRUE
## Change log configuration path. / default : classpath:/db/changelog/db.changelog-master.yaml
# spring.liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml
## Whether to clear all checksums in the current changelog, so they will be recalculated upon the next update. / default : FALSE
# spring.liquibase.clear-checksums=FALSE
## Comma-separated list of runtime contexts to use. / default :
# spring.liquibase.contexts=
## Name of table to use for tracking concurrent Liquibase usage. / default : DATABASECHANGELOGLOCK
# spring.liquibase.database-change-log-lock-table=DATABASECHANGELOGLOCK
## Name of table to use for tracking change history. / default : DATABASECHANGELOG
# spring.liquibase.database-change-log-table=DATABASECHANGELOG
## Default database schema. / default :
# spring.liquibase.default-schema=
## Fully qualified name of the JDBC driver. Auto-detected based on the URL by default. / default :
# spring.liquibase.driver-class-name=
## Whether to first drop the database schema. / default : FALSE
# spring.liquibase.drop-first=FALSE
## Whether to enable Liquibase support. / default : TRUE
# spring.liquibase.enabled=TRUE
## Comma-separated list of runtime labels to use. / default :
# spring.liquibase.labels=
## Schema to use for Liquibase objects. / default :
# spring.liquibase.liquibase-schema=
## Tablespace to use for Liquibase objects. / default :
# spring.liquibase.liquibase-tablespace=
## Change log parameters. / default :
# spring.liquibase.parameters.*=
## Login password of the database to migrate. / default :
# spring.liquibase.password=
## File to which rollback SQL is written when an update is performed. / default :
# spring.liquibase.rollback-file=
## Tag name to use when applying database changes. Can also be used with rollbackFile to generate a rollback script for all existing changes associated with that tag. / default :
# spring.liquibase.tag=
## Whether rollback should be tested before update is performed. / default : FALSE
# spring.liquibase.test-rollback-on-update=FALSE
## JDBC URL of the database to migrate. If not set, the primary configured data source is used. / default :
# spring.liquibase.url=
## Login user of the database to migrate. / default :
# spring.liquibase.user=
## Whether initialization should continue when an error occurs. / default : FALSE
# spring.sql.init.continue-on-error=FALSE
## Locations of the data (DML) scripts to apply to the database. / default :
# spring.sql.init.data-locations=
## Encoding of the schema and data scripts. / default :
# spring.sql.init.encoding=
## Mode to apply when determining whether initialization should be performed. / default : embedded
# spring.sql.init.mode=embedded
## Password of the database to use when applying initialization scripts (if different). / default :
# spring.sql.init.password=
## Platform to use in the default schema or data script locations, schema-${platform}.sql and data-${platform}.sql. / default : all
# spring.sql.init.platform=all
## Locations of the schema (DDL) scripts to apply to the database. / default :
# spring.sql.init.schema-locations=
## Statement separator in the schema and data scripts. / default : ;
# spring.sql.init.separator=;
## Username of the database to use when applying initialization scripts (if different). / default :
# spring.sql.init.username=


# 8. Integration Properties

## URL of the ActiveMQ broker. Auto-generated by default. / default :
# spring.activemq.broker-url=
## Time to wait before considering a close complete. / default : 15s
# spring.activemq.close-timeout=15s
## Whether the default broker URL should be in memory. Ignored if an explicit broker has been specified. / default : TRUE
# spring.activemq.in-memory=TRUE
## Whether to stop message delivery before re-delivering messages from a rolled back transaction. This implies that message order is not preserved when this is enabled. / default : FALSE
# spring.activemq.non-blocking-redelivery=FALSE
## Whether to trust all packages. / default :
# spring.activemq.packages.trust-all=
## Comma-separated list of specific packages to trust (when not trusting all packages). / default :
# spring.activemq.packages.trusted=
## Login password of the broker. / default :
# spring.activemq.password=
## Whether to block when a connection is requested and the pool is full. Set it to false to throw a JMSException instead. / default : TRUE
# spring.activemq.pool.block-if-full=TRUE
## Blocking period before throwing an exception if the pool is still full. / default : -1ms
# spring.activemq.pool.block-if-full-timeout=-1ms
## Whether a JmsPoolConnectionFactory should be created, instead of a regular ConnectionFactory. / default : FALSE
# spring.activemq.pool.enabled=FALSE
## Connection idle timeout. / default : 30s
# spring.activemq.pool.idle-timeout=30s
## Maximum number of pooled connections. / default : 1
# spring.activemq.pool.max-connections=1
## Maximum number of pooled sessions per connection in the pool. / default : 500
# spring.activemq.pool.max-sessions-per-connection=500
## Time to sleep between runs of the idle connection eviction thread. When negative, no idle connection eviction thread runs. / default : -1ms
# spring.activemq.pool.time-between-expiration-check=-1ms
## Whether to use only one anonymous MessageProducer instance. Set it to false to create one MessageProducer every time one is required. / default : TRUE
# spring.activemq.pool.use-anonymous-producers=TRUE
## Time to wait on message sends for a response. Set it to 0 to wait forever. / default : 0ms
# spring.activemq.send-timeout=0ms
## Login user of the broker. / default :
# spring.activemq.user=
## Artemis broker port. / default : tcp://localhost:61616
# spring.artemis.broker-url=tcp://localhost:61616
## Cluster password. Randomly generated on startup by default. / default :
# spring.artemis.embedded.cluster-password=
## Journal file directory. Not necessary if persistence is turned off. / default :
# spring.artemis.embedded.data-directory=
## Whether to enable embedded mode if the Artemis server APIs are available. / default : TRUE
# spring.artemis.embedded.enabled=TRUE
## Whether to enable persistent store. / default : FALSE
# spring.artemis.embedded.persistent=FALSE
## Comma-separated list of queues to create on startup. / default : []
# spring.artemis.embedded.queues=[]
## Server ID. By default, an auto-incremented counter is used. / default : 0
# spring.artemis.embedded.server-id=0
## Comma-separated list of topics to create on startup. / default : []
# spring.artemis.embedded.topics=[]
## Artemis deployment mode, auto-detected by default. / default :
# spring.artemis.mode=
## Login password of the broker. / default :
# spring.artemis.password=
## Whether to block when a connection is requested and the pool is full. Set it to false to throw a JMSException instead. / default : TRUE
# spring.artemis.pool.block-if-full=TRUE
## Blocking period before throwing an exception if the pool is still full. / default : -1ms
# spring.artemis.pool.block-if-full-timeout=-1ms
## Whether a JmsPoolConnectionFactory should be created, instead of a regular ConnectionFactory. / default : FALSE
# spring.artemis.pool.enabled=FALSE
## Connection idle timeout. / default : 30s
# spring.artemis.pool.idle-timeout=30s
## Maximum number of pooled connections. / default : 1
# spring.artemis.pool.max-connections=1
## Maximum number of pooled sessions per connection in the pool. / default : 500
# spring.artemis.pool.max-sessions-per-connection=500
## Time to sleep between runs of the idle connection eviction thread. When negative, no idle connection eviction thread runs. / default : -1ms
# spring.artemis.pool.time-between-expiration-check=-1ms
## Whether to use only one anonymous MessageProducer instance. Set it to false to create one MessageProducer every time one is required. / default : TRUE
# spring.artemis.pool.use-anonymous-producers=TRUE
## Login user of the broker. / default :
# spring.artemis.user=
## Database schema initialization mode. / default : embedded
# spring.batch.jdbc.initialize-schema=embedded
## Platform to use in initialization scripts if the @@platform@@ placeholder is used. Auto-detected by default. / default :
# spring.batch.jdbc.platform=
## Path to the SQL file to use to initialize the database schema. / default : classpath:org/springframework/batch/core/schema-@@platform@@.sql
# spring.batch.jdbc.schema=classpath:org/springframework/batch/core/schema-@@platform@@.sql
## Table prefix for all the batch meta-data tables. / default :
# spring.batch.jdbc.table-prefix=
## Execute all Spring Batch jobs in the context on startup. / default : TRUE
# spring.batch.job.enabled=TRUE
## Comma-separated list of job names to execute on startup (for instance, 'job1,job2'). By default, all Jobs found in the context are executed. / default :
# spring.batch.job.names=
## The location of the configuration file to use to initialize Hazelcast. / default :
# spring.hazelcast.config=
## Whether to create input channels if necessary. / default : TRUE
# spring.integration.channel.auto-create=TRUE
## Default number of subscribers allowed on, for example, a 'PublishSubscribeChannel'. / default :
# spring.integration.channel.max-broadcast-subscribers=
## Default number of subscribers allowed on, for example, a 'DirectChannel'. / default :
# spring.integration.channel.max-unicast-subscribers=
## A comma-separated list of endpoint bean names patterns that should not be started automatically during application startup. / default :
# spring.integration.endpoint.no-auto-startup=
## A comma-separated list of message header names that should not be populated into Message instances during a header copying operation. / default :
# spring.integration.endpoint.read-only-headers=
## Whether to throw an exception when a reply is not expected anymore by a gateway. / default : FALSE
# spring.integration.endpoint.throw-exception-on-late-reply=FALSE
## Whether to ignore failures for one or more of the handlers of the global 'errorChannel'. / default : TRUE
# spring.integration.error.ignore-failures=TRUE
## Whether to not silently ignore messages on the global 'errorChannel' when they are no subscribers. / default : TRUE
# spring.integration.error.require-subscribers=TRUE
## Database schema initialization mode. / default : embedded
# spring.integration.jdbc.initialize-schema=embedded
## Platform to use in initialization scripts if the @@platform@@ placeholder is used. Auto-detected by default. / default :
# spring.integration.jdbc.platform=
## Path to the SQL file to use to initialize the database schema. / default : classpath:org/springframework/integration/jdbc/schema-@@platform@@.sql
# spring.integration.jdbc.schema=classpath:org/springframework/integration/jdbc/schema-@@platform@@.sql
## Whether Spring Integration components should perform logging in the main message flow. When disabled, such logging will be skipped without checking the logging level. When enabled, such logging is controlled as normal by the logging system's log level configuration. / default : TRUE
# spring.integration.management.default-logging-enabled=TRUE
## Cron expression for polling. Mutually exclusive with 'fixedDelay' and 'fixedRate'. / default :
# spring.integration.poller.cron=
## Polling delay period. Mutually exclusive with 'cron' and 'fixedRate'. / default :
# spring.integration.poller.fixed-delay=
## Polling rate period. Mutually exclusive with 'fixedDelay' and 'cron'. / default :
# spring.integration.poller.fixed-rate=
## Polling initial delay. Applied for 'fixedDelay' and 'fixedRate'; ignored for 'cron'. / default :
# spring.integration.poller.initial-delay=
## Maximum number of messages to poll per polling cycle. / default :
# spring.integration.poller.max-messages-per-poll=
## How long to wait for messages on poll. / default : 1s
# spring.integration.poller.receive-timeout=1s
## TCP RSocket server host to connect to. / default :
# spring.integration.rsocket.client.host=
## TCP RSocket server port to connect to. / default :
# spring.integration.rsocket.client.port=
## WebSocket RSocket server uri to connect to. / default :
# spring.integration.rsocket.client.uri=
## Whether to handle message mapping for RSocket via Spring Integration. / default : FALSE
# spring.integration.rsocket.server.message-mapping-enabled=FALSE
## Whether to cache message consumers. / default : FALSE
# spring.jms.cache.consumers=FALSE
## Whether to cache sessions. / default : TRUE
# spring.jms.cache.enabled=TRUE
## Whether to cache message producers. / default : TRUE
# spring.jms.cache.producers=TRUE
## Size of the session cache (per JMS Session type). / default : 1
# spring.jms.cache.session-cache-size=1
## Connection factory JNDI name. When set, takes precedence to others connection factory auto-configurations. / default :
# spring.jms.jndi-name=
## Acknowledge mode of the container. By default, the listener is transacted with automatic acknowledgment. / default :
# spring.jms.listener.acknowledge-mode=
## Start the container automatically on startup. / default : TRUE
# spring.jms.listener.auto-startup=TRUE
## Minimum number of concurrent consumers. / default :
# spring.jms.listener.concurrency=
## Maximum number of concurrent consumers. / default :
# spring.jms.listener.max-concurrency=
## Timeout to use for receive calls. Use -1 for a no-wait receive or 0 for no timeout at all. The latter is only feasible if not running within a transaction manager and is generally discouraged since it prevents clean shutdown. / default : 1s
# spring.jms.listener.receive-timeout=1s
## Whether the default destination type is topic. / default : FALSE
# spring.jms.pub-sub-domain=FALSE
## Default destination to use on send and receive operations that do not have a destination parameter. / default :
# spring.jms.template.default-destination=
## Delivery delay to use for send calls. / default :
# spring.jms.template.delivery-delay=
## Delivery mode. Enables QoS (Quality of Service) when set. / default :
# spring.jms.template.delivery-mode=
## Priority of a message when sending. Enables QoS (Quality of Service) when set. / default :
# spring.jms.template.priority=
## Whether to enable explicit QoS (Quality of Service) when sending a message. When enabled, the delivery mode, priority and time-to-live properties will be used when sending a message. QoS is automatically enabled when at least one of those settings is customized. / default :
# spring.jms.template.qos-enabled=
## Timeout to use for receive calls. / default :
# spring.jms.template.receive-timeout=
## Time-to-live of a message when sending. Enables QoS (Quality of Service) when set. / default :
# spring.jms.template.time-to-live=
## ID to pass to the server when making requests. Used for server-side logging. / default :
# spring.kafka.admin.client-id=
## Whether to fail fast if the broker is not available on startup. / default : FALSE
# spring.kafka.admin.fail-fast=FALSE
## Additional admin-specific properties used to configure the client. / default :
# spring.kafka.admin.properties.*=
## Security protocol used to communicate with brokers. / default :
# spring.kafka.admin.security.protocol=
## Password of the private key in either key store key or key store file. / default :
# spring.kafka.admin.ssl.key-password=
## Certificate chain in PEM format with a list of X.509 certificates. / default :
# spring.kafka.admin.ssl.key-store-certificate-chain=
## Private key in PEM format with PKCS#8 keys. / default :
# spring.kafka.admin.ssl.key-store-key=
## Location of the key store file. / default :
# spring.kafka.admin.ssl.key-store-location=
## Store password for the key store file. / default :
# spring.kafka.admin.ssl.key-store-password=
## Type of the key store. / default :
# spring.kafka.admin.ssl.key-store-type=
## SSL protocol to use. / default :
# spring.kafka.admin.ssl.protocol=
## Trusted certificates in PEM format with X.509 certificates. / default :
# spring.kafka.admin.ssl.trust-store-certificates=
## Location of the trust store file. / default :
# spring.kafka.admin.ssl.trust-store-location=
## Store password for the trust store file. / default :
# spring.kafka.admin.ssl.trust-store-password=
## Type of the trust store. / default :
# spring.kafka.admin.ssl.trust-store-type=
## Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Applies to all components unless overridden. / default :
# spring.kafka.bootstrap-servers=
## ID to pass to the server when making requests. Used for server-side logging. / default :
# spring.kafka.client-id=
## Frequency with which the consumer offsets are auto-committed to Kafka if 'enable.auto.commit' is set to true. / default :
# spring.kafka.consumer.auto-commit-interval=
## What to do when there is no initial offset in Kafka or if the current offset no longer exists on the server. / default :
# spring.kafka.consumer.auto-offset-reset=
## Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for consumers. / default :
# spring.kafka.consumer.bootstrap-servers=
## ID to pass to the server when making requests. Used for server-side logging. / default :
# spring.kafka.consumer.client-id=
## Whether the consumer's offset is periodically committed in the background. / default :
# spring.kafka.consumer.enable-auto-commit=
## Maximum amount of time the server blocks before answering the fetch request if there isn't sufficient data to immediately satisfy the requirement given by fetch-min-size. / default :
# spring.kafka.consumer.fetch-max-wait=
## Minimum amount of data the server should return for a fetch request. / default :
# spring.kafka.consumer.fetch-min-size=
## Unique string that identifies the consumer group to which this consumer belongs. / default :
# spring.kafka.consumer.group-id=
## Expected time between heartbeats to the consumer coordinator. / default :
# spring.kafka.consumer.heartbeat-interval=
## Isolation level for reading messages that have been written transactionally. / default : read-uncommitted
# spring.kafka.consumer.isolation-level=read-uncommitted
## Deserializer class for keys. / default :
# spring.kafka.consumer.key-deserializer=
## Maximum number of records returned in a single call to poll(). / default :
# spring.kafka.consumer.max-poll-records=
## Additional consumer-specific properties used to configure the client. / default :
# spring.kafka.consumer.properties.*=
## Security protocol used to communicate with brokers. / default :
# spring.kafka.consumer.security.protocol=
## Password of the private key in either key store key or key store file. / default :
# spring.kafka.consumer.ssl.key-password=
## Certificate chain in PEM format with a list of X.509 certificates. / default :
# spring.kafka.consumer.ssl.key-store-certificate-chain=
## Private key in PEM format with PKCS#8 keys. / default :
# spring.kafka.consumer.ssl.key-store-key=
## Location of the key store file. / default :
# spring.kafka.consumer.ssl.key-store-location=
## Store password for the key store file. / default :
# spring.kafka.consumer.ssl.key-store-password=
## Type of the key store. / default :
# spring.kafka.consumer.ssl.key-store-type=
## SSL protocol to use. / default :
# spring.kafka.consumer.ssl.protocol=
## Trusted certificates in PEM format with X.509 certificates. / default :
# spring.kafka.consumer.ssl.trust-store-certificates=
## Location of the trust store file. / default :
# spring.kafka.consumer.ssl.trust-store-location=
## Store password for the trust store file. / default :
# spring.kafka.consumer.ssl.trust-store-password=
## Type of the trust store. / default :
# spring.kafka.consumer.ssl.trust-store-type=
## Deserializer class for values. / default :
# spring.kafka.consumer.value-deserializer=
## Control flag for login configuration. / default : required
# spring.kafka.jaas.control-flag=required
## Whether to enable JAAS configuration. / default : FALSE
# spring.kafka.jaas.enabled=FALSE
## Login module. / default : com.sun.security.auth.module.Krb5LoginModule
# spring.kafka.jaas.login-module=com.sun.security.auth.module.Krb5LoginModule
## Additional JAAS options. / default :
# spring.kafka.jaas.options.*=
## Number of records between offset commits when ackMode is COUNT or COUNT_TIME. / default :
# spring.kafka.listener.ack-count=
## Listener AckMode. See the spring-kafka documentation. / default :
# spring.kafka.listener.ack-mode=
## Time between offset commits when ackMode is TIME or COUNT_TIME. / default :
# spring.kafka.listener.ack-time=
## Prefix for the listener's consumer client.id property. / default :
# spring.kafka.listener.client-id=
## Number of threads to run in the listener containers. / default :
# spring.kafka.listener.concurrency=
## Sleep interval between Consumer.poll(Duration) calls. / default : 0
# spring.kafka.listener.idle-between-polls=0
## Time between publishing idle consumer events (no data received). / default :
# spring.kafka.listener.idle-event-interval=
## Whether to log the container configuration during initialization (INFO level). / default :
# spring.kafka.listener.log-container-config=
## Whether the container should fail to start if at least one of the configured topics are not present on the broker. / default : FALSE
# spring.kafka.listener.missing-topics-fatal=FALSE
## Time between checks for non-responsive consumers. If a duration suffix is not specified, seconds will be used. / default :
# spring.kafka.listener.monitor-interval=
## Multiplier applied to pollTimeout to determine if a consumer is non-responsive. / default :
# spring.kafka.listener.no-poll-threshold=
## Whether to suppress the entire record from being written to the log when retries are being attempted. / default : TRUE
# spring.kafka.listener.only-log-record-metadata=TRUE
## Timeout to use when polling the consumer. / default :
# spring.kafka.listener.poll-timeout=
## Listener type. / default : single
# spring.kafka.listener.type=single
## Number of acknowledgments the producer requires the leader to have received before considering a request complete. / default :
# spring.kafka.producer.acks=
## Default batch size. A small batch size will make batching less common and may reduce throughput (a batch size of zero disables batching entirely). / default :
# spring.kafka.producer.batch-size=
## Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for producers. / default :
# spring.kafka.producer.bootstrap-servers=
## Total memory size the producer can use to buffer records waiting to be sent to the server. / default :
# spring.kafka.producer.buffer-memory=
## ID to pass to the server when making requests. Used for server-side logging. / default :
# spring.kafka.producer.client-id=
## Compression type for all data generated by the producer. / default :
# spring.kafka.producer.compression-type=
## Serializer class for keys. / default :
# spring.kafka.producer.key-serializer=
## Additional producer-specific properties used to configure the client. / default :
# spring.kafka.producer.properties.*=
## When greater than zero, enables retrying of failed sends. / default :
# spring.kafka.producer.retries=
## Security protocol used to communicate with brokers. / default :
# spring.kafka.producer.security.protocol=
## Password of the private key in either key store key or key store file. / default :
# spring.kafka.producer.ssl.key-password=
## Certificate chain in PEM format with a list of X.509 certificates. / default :
# spring.kafka.producer.ssl.key-store-certificate-chain=
## Private key in PEM format with PKCS#8 keys. / default :
# spring.kafka.producer.ssl.key-store-key=
## Location of the key store file. / default :
# spring.kafka.producer.ssl.key-store-location=
## Store password for the key store file. / default :
# spring.kafka.producer.ssl.key-store-password=
## Type of the key store. / default :
# spring.kafka.producer.ssl.key-store-type=
## SSL protocol to use. / default :
# spring.kafka.producer.ssl.protocol=
## Trusted certificates in PEM format with X.509 certificates. / default :
# spring.kafka.producer.ssl.trust-store-certificates=
## Location of the trust store file. / default :
# spring.kafka.producer.ssl.trust-store-location=
## Store password for the trust store file. / default :
# spring.kafka.producer.ssl.trust-store-password=
## Type of the trust store. / default :
# spring.kafka.producer.ssl.trust-store-type=
## When non empty, enables transaction support for producer. / default :
# spring.kafka.producer.transaction-id-prefix=
## Serializer class for values. / default :
# spring.kafka.producer.value-serializer=
## Additional properties, common to producers and consumers, used to configure the client. / default :
# spring.kafka.properties.*=
## Security protocol used to communicate with brokers. / default :
# spring.kafka.security.protocol=
## Password of the private key in either key store key or key store file. / default :
# spring.kafka.ssl.key-password=
## Certificate chain in PEM format with a list of X.509 certificates. / default :
# spring.kafka.ssl.key-store-certificate-chain=
## Private key in PEM format with PKCS#8 keys. / default :
# spring.kafka.ssl.key-store-key=
## Location of the key store file. / default :
# spring.kafka.ssl.key-store-location=
## Store password for the key store file. / default :
# spring.kafka.ssl.key-store-password=
## Type of the key store. / default :
# spring.kafka.ssl.key-store-type=
## SSL protocol to use. / default :
# spring.kafka.ssl.protocol=
## Trusted certificates in PEM format with X.509 certificates. / default :
# spring.kafka.ssl.trust-store-certificates=
## Location of the trust store file. / default :
# spring.kafka.ssl.trust-store-location=
## Store password for the trust store file. / default :
# spring.kafka.ssl.trust-store-password=
## Type of the trust store. / default :
# spring.kafka.ssl.trust-store-type=
## Kafka streams application.id property; default spring.application.name. / default :
# spring.kafka.streams.application-id=
## Whether or not to auto-start the streams factory bean. / default : TRUE
# spring.kafka.streams.auto-startup=TRUE
## Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for streams. / default :
# spring.kafka.streams.bootstrap-servers=
## Maximum memory size to be used for buffering across all threads. / default :
# spring.kafka.streams.cache-max-size-buffering=
## Cleanup the application’s local state directory on shutdown. / default : FALSE
# spring.kafka.streams.cleanup.on-shutdown=FALSE
## Cleanup the application’s local state directory on startup. / default : FALSE
# spring.kafka.streams.cleanup.on-startup=FALSE
## ID to pass to the server when making requests. Used for server-side logging. / default :
# spring.kafka.streams.client-id=
## Additional Kafka properties used to configure the streams. / default :
# spring.kafka.streams.properties.*=
## The replication factor for change log topics and repartition topics created by the stream processing application. / default :
# spring.kafka.streams.replication-factor=
## Security protocol used to communicate with brokers. / default :
# spring.kafka.streams.security.protocol=
## Password of the private key in either key store key or key store file. / default :
# spring.kafka.streams.ssl.key-password=
## Certificate chain in PEM format with a list of X.509 certificates. / default :
# spring.kafka.streams.ssl.key-store-certificate-chain=
## Private key in PEM format with PKCS#8 keys. / default :
# spring.kafka.streams.ssl.key-store-key=
## Location of the key store file. / default :
# spring.kafka.streams.ssl.key-store-location=
## Store password for the key store file. / default :
# spring.kafka.streams.ssl.key-store-password=
## Type of the key store. / default :
# spring.kafka.streams.ssl.key-store-type=
## SSL protocol to use. / default :
# spring.kafka.streams.ssl.protocol=
## Trusted certificates in PEM format with X.509 certificates. / default :
# spring.kafka.streams.ssl.trust-store-certificates=
## Location of the trust store file. / default :
# spring.kafka.streams.ssl.trust-store-location=
## Store password for the trust store file. / default :
# spring.kafka.streams.ssl.trust-store-password=
## Type of the trust store. / default :
# spring.kafka.streams.ssl.trust-store-type=
## Directory location for the state store. / default :
# spring.kafka.streams.state-dir=
## Default topic to which messages are sent. / default :
# spring.kafka.template.default-topic=
## Mode used to shuffle configured addresses. / default : none
# spring.rabbitmq.address-shuffle-mode=none
## Comma-separated list of addresses to which the client should connect. When set, the host and port are ignored. / default :
# spring.rabbitmq.addresses=
## Duration to wait to obtain a channel if the cache size has been reached. If 0, always create a new channel. / default :
# spring.rabbitmq.cache.channel.checkout-timeout=
## Number of channels to retain in the cache. When check-timeout > 0, max channels per connection. / default :
# spring.rabbitmq.cache.channel.size=
## Connection factory cache mode. / default : channel
# spring.rabbitmq.cache.connection.mode=channel
## Number of connections to cache. Only applies when mode is CONNECTION. / default :
# spring.rabbitmq.cache.connection.size=
## Continuation timeout for RPC calls in channels. Set it to zero to wait forever. / default : 10m
# spring.rabbitmq.channel-rpc-timeout=10m
## Connection timeout. Set it to zero to wait forever. / default :
# spring.rabbitmq.connection-timeout=
## Whether to create an AmqpAdmin bean. / default : TRUE
# spring.rabbitmq.dynamic=TRUE
## RabbitMQ host. Ignored if an address is set. / default : localhost
# spring.rabbitmq.host=localhost
## Acknowledge mode of container. / default :
# spring.rabbitmq.listener.direct.acknowledge-mode=
## Whether to start the container automatically on startup. / default : TRUE
# spring.rabbitmq.listener.direct.auto-startup=TRUE
## Number of consumers per queue. / default :
# spring.rabbitmq.listener.direct.consumers-per-queue=
## Whether the container should present batched messages as discrete messages or call the listener with the batch. / default : TRUE
# spring.rabbitmq.listener.direct.de-batching-enabled=TRUE
## Whether rejected deliveries are re-queued by default. / default :
# spring.rabbitmq.listener.direct.default-requeue-rejected=
## How often idle container events should be published. / default :
# spring.rabbitmq.listener.direct.idle-event-interval=
## Whether to fail if the queues declared by the container are not available on the broker. / default : FALSE
# spring.rabbitmq.listener.direct.missing-queues-fatal=FALSE
## Maximum number of unacknowledged messages that can be outstanding at each consumer. / default :
# spring.rabbitmq.listener.direct.prefetch=
## Whether publishing retries are enabled. / default : FALSE
# spring.rabbitmq.listener.direct.retry.enabled=FALSE
## Duration between the first and second attempt to deliver a message. / default : 1000ms
# spring.rabbitmq.listener.direct.retry.initial-interval=1000ms
## Maximum number of attempts to deliver a message. / default : 3
# spring.rabbitmq.listener.direct.retry.max-attempts=3
## Maximum duration between attempts. / default : 10000ms
# spring.rabbitmq.listener.direct.retry.max-interval=10000ms
## Multiplier to apply to the previous retry interval. / default : 1
# spring.rabbitmq.listener.direct.retry.multiplier=1
## Whether retries are stateless or stateful. / default : TRUE
# spring.rabbitmq.listener.direct.retry.stateless=TRUE
## Acknowledge mode of container. / default :
# spring.rabbitmq.listener.simple.acknowledge-mode=
## Whether to start the container automatically on startup. / default : TRUE
# spring.rabbitmq.listener.simple.auto-startup=TRUE
## Batch size, expressed as the number of physical messages, to be used by the container. / default :
# spring.rabbitmq.listener.simple.batch-size=
## Minimum number of listener invoker threads. / default :
# spring.rabbitmq.listener.simple.concurrency=
## Whether the container creates a batch of messages based on the 'receive-timeout' and 'batch-size'. Coerces 'de-batching-enabled' to true to include the contents of a producer created batch in the batch as discrete records. / default : FALSE
# spring.rabbitmq.listener.simple.consumer-batch-enabled=FALSE
## Whether the container should present batched messages as discrete messages or call the listener with the batch. / default : TRUE
# spring.rabbitmq.listener.simple.de-batching-enabled=TRUE
## Whether rejected deliveries are re-queued by default. / default :
# spring.rabbitmq.listener.simple.default-requeue-rejected=
## How often idle container events should be published. / default :
# spring.rabbitmq.listener.simple.idle-event-interval=
## Maximum number of listener invoker threads. / default :
# spring.rabbitmq.listener.simple.max-concurrency=
## 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. / default : TRUE
# spring.rabbitmq.listener.simple.missing-queues-fatal=TRUE
## Maximum number of unacknowledged messages that can be outstanding at each consumer. / default :
# spring.rabbitmq.listener.simple.prefetch=
## Whether publishing retries are enabled. / default : FALSE
# spring.rabbitmq.listener.simple.retry.enabled=FALSE
## Duration between the first and second attempt to deliver a message. / default : 1000ms
# spring.rabbitmq.listener.simple.retry.initial-interval=1000ms
## Maximum number of attempts to deliver a message. / default : 3
# spring.rabbitmq.listener.simple.retry.max-attempts=3
## Maximum duration between attempts. / default : 10000ms
# spring.rabbitmq.listener.simple.retry.max-interval=10000ms
## Multiplier to apply to the previous retry interval. / default : 1
# spring.rabbitmq.listener.simple.retry.multiplier=1
## Whether retries are stateless or stateful. / default : TRUE
# spring.rabbitmq.listener.simple.retry.stateless=TRUE
## Whether to start the container automatically on startup. / default : TRUE
# spring.rabbitmq.listener.stream.auto-startup=TRUE
## Whether the container will support listeners that consume native stream messages instead of Spring AMQP messages. / default : FALSE
# spring.rabbitmq.listener.stream.native-listener=FALSE
## Listener container type. / default : simple
# spring.rabbitmq.listener.type=simple
## Login to authenticate against the broker. / default : guest
# spring.rabbitmq.password=guest
## RabbitMQ port. Ignored if an address is set. Default to 5672, or 5671 if SSL is enabled. / default :
# spring.rabbitmq.port=
## Type of publisher confirms to use. / default :
# spring.rabbitmq.publisher-confirm-type=
## Whether to enable publisher returns. / default : FALSE
# spring.rabbitmq.publisher-returns=FALSE
## Number of channels per connection requested by the client. Use 0 for unlimited. / default : 2047
# spring.rabbitmq.requested-channel-max=2047
## Requested heartbeat timeout; zero for none. If a duration suffix is not specified, seconds will be used. / default :
# spring.rabbitmq.requested-heartbeat=
## SSL algorithm to use. By default, configured by the Rabbit client library. / default :
# spring.rabbitmq.ssl.algorithm=
## Whether to enable SSL support. Determined automatically if an address is provided with the protocol (amqp:// vs. amqps://). / default :
# spring.rabbitmq.ssl.enabled=
## Path to the key store that holds the SSL certificate. / default :
# spring.rabbitmq.ssl.key-store=
## Key store algorithm. / default : SunX509
# spring.rabbitmq.ssl.key-store-algorithm=SunX509
## Password used to access the key store. / default :
# spring.rabbitmq.ssl.key-store-password=
## Key store type. / default : PKCS12
# spring.rabbitmq.ssl.key-store-type=PKCS12
## Trust store that holds SSL certificates. / default :
# spring.rabbitmq.ssl.trust-store=
## Trust store algorithm. / default : SunX509
# spring.rabbitmq.ssl.trust-store-algorithm=SunX509
## Password used to access the trust store. / default :
# spring.rabbitmq.ssl.trust-store-password=
## Trust store type. / default : JKS
# spring.rabbitmq.ssl.trust-store-type=JKS
## Whether to enable server side certificate validation. / default : TRUE
# spring.rabbitmq.ssl.validate-server-certificate=TRUE
## Whether to enable hostname verification. / default : TRUE
# spring.rabbitmq.ssl.verify-hostname=TRUE
## Host of a RabbitMQ instance with the Stream plugin enabled. / default : localhost
# spring.rabbitmq.stream.host=localhost
## Login password to authenticate to the broker. When not set spring.rabbitmq.password is used. / default :
# spring.rabbitmq.stream.password=
## Stream port of a RabbitMQ instance with the Stream plugin enabled. / default :
# spring.rabbitmq.stream.port=
## Login user to authenticate to the broker. When not set, spring.rabbitmq.username is used. / default :
# spring.rabbitmq.stream.username=
## Name of the default queue to receive messages from when none is specified explicitly. / default :
# spring.rabbitmq.template.default-receive-queue=
## Name of the default exchange to use for send operations. / default :
# spring.rabbitmq.template.exchange=
## Whether to enable mandatory messages. / default :
# spring.rabbitmq.template.mandatory=
## Timeout for receive() operations. / default :
# spring.rabbitmq.template.receive-timeout=
## Timeout for sendAndReceive() operations. / default :
# spring.rabbitmq.template.reply-timeout=
## Whether publishing retries are enabled. / default : FALSE
# spring.rabbitmq.template.retry.enabled=FALSE
## Duration between the first and second attempt to deliver a message. / default : 1000ms
# spring.rabbitmq.template.retry.initial-interval=1000ms
## Maximum number of attempts to deliver a message. / default : 3
# spring.rabbitmq.template.retry.max-attempts=3
## Maximum duration between attempts. / default : 10000ms
# spring.rabbitmq.template.retry.max-interval=10000ms
## Multiplier to apply to the previous retry interval. / default : 1
# spring.rabbitmq.template.retry.multiplier=1
## Value of a default routing key to use for send operations. / default :
# spring.rabbitmq.template.routing-key=
## Login user to authenticate to the broker. / default : guest
# spring.rabbitmq.username=guest
## Virtual host to use when connecting to the broker. / default :
# spring.rabbitmq.virtual-host=
## Path that serves as the base URI for the services. / default : /services
# spring.webservices.path=/services
## Servlet init parameters to pass to Spring Web Services. / default :
# spring.webservices.servlet.init.*=
## Load on startup priority of the Spring Web Services servlet. / default : -1
# spring.webservices.servlet.load-on-startup=-1
## Comma-separated list of locations of WSDLs and accompanying XSDs to be exposed as beans. / default :
# spring.webservices.wsdl-locations=


# 9. Web Properties

## Whether application/hal+json responses should be sent to requests that accept application/json. / default : TRUE
# spring.hateoas.use-hal-as-default-json-media-type=TRUE
## Path that serves as the base URI for the application. If specified, overrides the value of @ApplicationPath. / default :
# spring.jersey.application-path=
## Jersey filter chain order. / default : 0
# spring.jersey.filter.order=0
## Init parameters to pass to Jersey through the servlet or filter. / default :
# spring.jersey.init.*=
## Load on startup priority of the Jersey servlet. / default : -1
# spring.jersey.servlet.load-on-startup=-1
## Jersey integration type. / default : servlet
# spring.jersey.type=servlet
## Amount of time before asynchronous request handling times out. If this value is not set, the default timeout of the underlying implementation is used. / default :
# spring.mvc.async.request-timeout=
## Whether a request parameter (format by default) should be used to determine the requested media type. / default : FALSE
# spring.mvc.contentnegotiation.favor-parameter=FALSE
## Map file extensions to media types for content negotiation. For instance, yml to text/yaml. / default :
# spring.mvc.contentnegotiation.media-types.*=
## Query parameter name to use when favor-parameter is enabled. / default :
# spring.mvc.contentnegotiation.parameter-name=
## Preferred JSON mapper to use for HTTP message conversion. By default, auto-detected according to the environment. / default :
# spring.mvc.converters.preferred-json-mapper=
## Whether to dispatch OPTIONS requests to the FrameworkServlet doService method. / default : TRUE
# spring.mvc.dispatch-options-request=TRUE
## Whether to dispatch TRACE requests to the FrameworkServlet doService method. / default : FALSE
# spring.mvc.dispatch-trace-request=FALSE
## Date format to use, for example 'dd/MM/yyyy'. / default :
# spring.mvc.format.date=
## Date-time format to use, for example 'yyyy-MM-dd HH:mm:ss'. / default :
# spring.mvc.format.date-time=
## Time format to use, for example 'HH:mm:ss'. / default :
# spring.mvc.format.time=
## Whether to enable Spring's FormContentFilter. / default : TRUE
# spring.mvc.formcontent.filter.enabled=TRUE
## Whether to enable Spring's HiddenHttpMethodFilter. / default : FALSE
# spring.mvc.hiddenmethod.filter.enabled=FALSE
## Whether the content of the default model should be ignored during redirect scenarios. / default : TRUE
# spring.mvc.ignore-default-model-on-redirect=TRUE
## Whether logging of (potentially sensitive) request details at DEBUG and TRACE level is allowed. / default : FALSE
# spring.mvc.log-request-details=FALSE
## Whether to enable warn logging of exceptions resolved by a HandlerExceptionResolver, except for DefaultHandlerExceptionResolver. / default : FALSE
# spring.mvc.log-resolved-exception=FALSE
## Formatting strategy for message codes. For instance, 'PREFIX_ERROR_CODE'. / default :
# spring.mvc.message-codes-resolver-format=
## Choice of strategy for matching request paths against registered mappings. / default : path-pattern-parser
# spring.mvc.pathmatch.matching-strategy=path-pattern-parser
## Whether to publish a ServletRequestHandledEvent at the end of each request. / default : TRUE
# spring.mvc.publish-request-handled-events=TRUE
## Load on startup priority of the dispatcher servlet. / default : -1
# spring.mvc.servlet.load-on-startup=-1
## Path of the dispatcher servlet. Setting a custom value for this property is not compatible with the PathPatternParser matching strategy. / default : /
# spring.mvc.servlet.path=/
## Path pattern used for static resources. / default : /**
# spring.mvc.static-path-pattern=/**
## Whether a NoHandlerFoundException should be thrown if no Handler was found to process a request. / default : FALSE
# spring.mvc.throw-exception-if-no-handler-found=FALSE
## Spring MVC view prefix. / default :
# spring.mvc.view.prefix=
## Spring MVC view suffix. / default :
# spring.mvc.view.suffix=
## Level of leak detection for reference-counted buffers. / default : simple
# spring.netty.leak-detection=simple
## Whether to enable support of multipart uploads. / default : TRUE
# spring.servlet.multipart.enabled=TRUE
## Threshold after which files are written to disk. / default : 0B
# spring.servlet.multipart.file-size-threshold=0B
## Intermediate location of uploaded files. / default :
# spring.servlet.multipart.location=
## Max file size. / default : 1MB
# spring.servlet.multipart.max-file-size=1MB
## Max request size. / default : 10MB
# spring.servlet.multipart.max-request-size=10MB
## Whether to resolve the multipart request lazily at the time of file or parameter access. / default : FALSE
# spring.servlet.multipart.resolve-lazily=FALSE
## Sessions flush mode. Determines when session changes are written to the session store. / default : on-save
# spring.session.hazelcast.flush-mode=on-save
## Name of the map used to store sessions. / default : spring:session:sessions
# spring.session.hazelcast.map-name=spring:session:sessions
## Sessions save mode. Determines how session changes are tracked and saved to the session store. / default : on-set-attribute
# spring.session.hazelcast.save-mode=on-set-attribute
## Cron expression for expired session cleanup job. / default : 0 * * * * *
# spring.session.jdbc.cleanup-cron=0 * * * * *
## Sessions flush mode. Determines when session changes are written to the session store. / default : on-save
# spring.session.jdbc.flush-mode=on-save
## Database schema initialization mode. / default : embedded
# spring.session.jdbc.initialize-schema=embedded
## Platform to use in initialization scripts if the @@platform@@ placeholder is used. Auto-detected by default. / default :
# spring.session.jdbc.platform=
## Sessions save mode. Determines how session changes are tracked and saved to the session store. / default : on-set-attribute
# spring.session.jdbc.save-mode=on-set-attribute
## Path to the SQL file to use to initialize the database schema. / default : classpath:org/springframework/session/jdbc/schema-@@platform@@.sql
# spring.session.jdbc.schema=classpath:org/springframework/session/jdbc/schema-@@platform@@.sql
## Name of the database table used to store sessions. / default : SPRING_SESSION
# spring.session.jdbc.table-name=SPRING_SESSION
## Collection name used to store sessions. / default : sessions
# spring.session.mongodb.collection-name=sessions
## Cron expression for expired session cleanup job. / default : 0 * * * * *
# spring.session.redis.cleanup-cron=0 * * * * *
## The configure action to apply when no user defined ConfigureRedisAction bean is present. / default : notify-keyspace-events
# spring.session.redis.configure-action=notify-keyspace-events
## Sessions flush mode. Determines when session changes are written to the session store. / default : on-save
# spring.session.redis.flush-mode=on-save
## Namespace for keys used to store sessions. / default : spring:session
# spring.session.redis.namespace=spring:session
## Sessions save mode. Determines how session changes are tracked and saved to the session store. / default : on-set-attribute
# spring.session.redis.save-mode=on-set-attribute
## Session repository filter dispatcher types. / default : [async, error, request]
# spring.session.servlet.filter-dispatcher-types=[async, error, request]
## Session repository filter order. / default :
# spring.session.servlet.filter-order=
## Session store type. / default :
# spring.session.store-type=
## Session timeout. If a duration suffix is not specified, seconds will be used. / default :
# spring.session.timeout=
## Locale to use. By default, this locale is overridden by the Accept-Language header. / default :
# spring.web.locale=
## Define how the locale should be resolved. / default : accept-header
# spring.web.locale-resolver=accept-header
## Whether to enable default resource handling. / default : TRUE
# spring.web.resources.add-mappings=TRUE
## Indicate that the response message is intended for a single user and must not be stored by a shared cache. / default :
# spring.web.resources.cache.cachecontrol.cache-private=
## Indicate that any cache may store the response. / default :
# spring.web.resources.cache.cachecontrol.cache-public=
## Maximum time the response should be cached, in seconds if no duration suffix is not specified. / default :
# spring.web.resources.cache.cachecontrol.max-age=
## Indicate that once it has become stale, a cache must not use the response without re-validating it with the server. / default :
# spring.web.resources.cache.cachecontrol.must-revalidate=
## Indicate that the cached response can be reused only if re-validated with the server. / default :
# spring.web.resources.cache.cachecontrol.no-cache=
## Indicate to not cache the response in any case. / default :
# spring.web.resources.cache.cachecontrol.no-store=
## Indicate intermediaries (caches and others) that they should not transform the response content. / default :
# spring.web.resources.cache.cachecontrol.no-transform=
## Same meaning as the must-revalidate directive, except that it does not apply to private caches. / default :
# spring.web.resources.cache.cachecontrol.proxy-revalidate=
## Maximum time the response should be cached by shared caches, in seconds if no duration suffix is not specified. / default :
# spring.web.resources.cache.cachecontrol.s-max-age=
## Maximum time the response may be used when errors are encountered, in seconds if no duration suffix is not specified. / default :
# spring.web.resources.cache.cachecontrol.stale-if-error=
## Maximum time the response can be served after it becomes stale, in seconds if no duration suffix is not specified. / default :
# spring.web.resources.cache.cachecontrol.stale-while-revalidate=
## Cache period for the resources served by the resource handler. If a duration suffix is not specified, seconds will be used. Can be overridden by the 'spring.web.resources.cache.cachecontrol' properties. / default :
# spring.web.resources.cache.period=
## Whether we should use the lastModified metadata of the files in HTTP caching headers. / default : TRUE
# spring.web.resources.cache.use-last-modified=TRUE
## Whether to enable caching in the Resource chain. / default : TRUE
# spring.web.resources.chain.cache=TRUE
## Whether to enable resolution of already compressed resources (gzip, brotli). Checks for a resource name with the '.gz' or '.br' file extensions. / default : FALSE
# spring.web.resources.chain.compressed=FALSE
## Whether to enable the Spring Resource Handling chain. By default, disabled unless at least one strategy has been enabled. / default :
# spring.web.resources.chain.enabled=
## Whether to enable the content Version Strategy. / default : FALSE
# spring.web.resources.chain.strategy.content.enabled=FALSE
## Comma-separated list of patterns to apply to the content Version Strategy. / default : [/**]
# spring.web.resources.chain.strategy.content.paths=[/**]
## Whether to enable the fixed Version Strategy. / default : FALSE
# spring.web.resources.chain.strategy.fixed.enabled=FALSE
## Comma-separated list of patterns to apply to the fixed Version Strategy. / default : [/**]
# spring.web.resources.chain.strategy.fixed.paths=[/**]
## Version string to use for the fixed Version Strategy. / default :
# spring.web.resources.chain.strategy.fixed.version=
## Locations of static resources. Defaults to classpath:[/META-INF/resources/, /resources/, /static/, /public/]. / default : [classpath:/META-INF/resources/, classpath:/resources/, classpath:/static/, classpath:/public/]
# spring.web.resources.static-locations=[classpath:/META-INF/resources/, classpath:/resources/, classpath:/static/, classpath:/public/]
## Base path for all web handlers. / default :
# spring.webflux.base-path=
## Date format to use, for example 'dd/MM/yyyy'. / default :
# spring.webflux.format.date=
## Date-time format to use, for example 'yyyy-MM-dd HH:mm:ss'. / default :
# spring.webflux.format.date-time=
## Time format to use, for example 'HH:mm:ss'. / default :
# spring.webflux.format.time=
## Whether to enable Spring's HiddenHttpMethodFilter. / default : FALSE
# spring.webflux.hiddenmethod.filter.enabled=FALSE
## Directory used to store file parts larger than 'maxInMemorySize'. Default is a directory named 'spring-multipart' created under the system temporary directory. Ignored when streaming is enabled. / default :
# spring.webflux.multipart.file-storage-directory=
## Character set used to decode headers. / default : UTF-8
# spring.webflux.multipart.headers-charset=UTF-8
## Maximum amount of disk space allowed per part. Default is -1 which enforces no limits. Ignored when streaming is enabled. / default : -1B
# spring.webflux.multipart.max-disk-usage-per-part=-1B
## Maximum amount of memory allowed per headers section of each part. Set to -1 to enforce no limits. / default : 10KB
# spring.webflux.multipart.max-headers-size=10KB
## Maximum amount of memory allowed per part before it's written to disk. Set to -1 to store all contents in memory. Ignored when streaming is enabled. / default : 256KB
# spring.webflux.multipart.max-in-memory-size=256KB
## Maximum number of parts allowed in a given multipart request. Default is -1 which enforces no limits. / default : -1
# spring.webflux.multipart.max-parts=-1
## Whether to stream directly from the parsed input buffer stream without storing in memory nor file. Default is non-streaming. / default : FALSE
# spring.webflux.multipart.streaming=FALSE
# spring.webflux.session.timeout=30m
## Path pattern used for static resources. / default : /**
# spring.webflux.static-path-pattern=/**


# 10. Templating Properties

## Whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name. / default : FALSE
# spring.freemarker.allow-request-override=FALSE
## Whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name. / default : FALSE
# spring.freemarker.allow-session-override=FALSE
## Whether to enable template caching. / default : FALSE
# spring.freemarker.cache=FALSE
## Template encoding. / default : UTF-8
# spring.freemarker.charset=UTF-8
## Whether to check that the templates location exists. / default : TRUE
# spring.freemarker.check-template-location=TRUE
## Content-Type value. / default : text/html
# spring.freemarker.content-type=text/html
## Whether to enable MVC view resolution for this technology. / default : TRUE
# spring.freemarker.enabled=TRUE
## Whether all request attributes should be added to the model prior to merging with the template. / default : FALSE
# spring.freemarker.expose-request-attributes=FALSE
## Whether all HttpSession attributes should be added to the model prior to merging with the template. / default : FALSE
# spring.freemarker.expose-session-attributes=FALSE
## Whether to expose a RequestContext for use by Spring's macro library, under the name springMacroRequestContext. / default : TRUE
# spring.freemarker.expose-spring-macro-helpers=TRUE
## Whether to prefer file system access for template loading to enable hot detection of template changes. When a template path is detected as a directory, templates are loaded from the directory only and other matching classpath locations will not be considered. / default : FALSE
# spring.freemarker.prefer-file-system-access=FALSE
## Prefix that gets prepended to view names when building a URL. / default :
# spring.freemarker.prefix=
## Name of the RequestContext attribute for all views. / default :
# spring.freemarker.request-context-attribute=
## Well-known FreeMarker keys which are passed to FreeMarker's Configuration. / default :
# spring.freemarker.settings.*=
## Suffix that gets appended to view names when building a URL. / default : .ftlh
# spring.freemarker.suffix=.ftlh
## Comma-separated list of template paths. / default : [classpath:/templates/]
# spring.freemarker.template-loader-path=[classpath:/templates/]
## View names that can be resolved. / default :
# spring.freemarker.view-names=
## Whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name. / default : FALSE
# spring.groovy.template.allow-request-override=FALSE
## Whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name. / default : FALSE
# spring.groovy.template.allow-session-override=FALSE
## Whether to enable template caching. / default : FALSE
# spring.groovy.template.cache=FALSE
## Template encoding. / default : UTF-8
# spring.groovy.template.charset=UTF-8
## Whether to check that the templates location exists. / default : TRUE
# spring.groovy.template.check-template-location=TRUE
## See GroovyMarkupConfigurer / default :
# spring.groovy.template.configuration.auto-escape=
# spring.groovy.template.configuration.auto-indent=
# spring.groovy.template.configuration.auto-indent-string=
# spring.groovy.template.configuration.auto-new-line=
# spring.groovy.template.configuration.base-template-class=
# spring.groovy.template.configuration.cache-templates=
# spring.groovy.template.configuration.declaration-encoding=
# spring.groovy.template.configuration.expand-empty-elements=
# spring.groovy.template.configuration.locale=
# spring.groovy.template.configuration.new-line-string=
# spring.groovy.template.configuration.resource-loader-path=
# spring.groovy.template.configuration.use-double-quotes=
## Content-Type value. / default : text/html
# spring.groovy.template.content-type=text/html
## Whether to enable MVC view resolution for this technology. / default : TRUE
# spring.groovy.template.enabled=TRUE
## Whether all request attributes should be added to the model prior to merging with the template. / default : FALSE
# spring.groovy.template.expose-request-attributes=FALSE
## Whether all HttpSession attributes should be added to the model prior to merging with the template. / default : FALSE
# spring.groovy.template.expose-session-attributes=FALSE
## Whether to expose a RequestContext for use by Spring's macro library, under the name springMacroRequestContext. / default : TRUE
# spring.groovy.template.expose-spring-macro-helpers=TRUE
## Prefix that gets prepended to view names when building a URL. / default :
# spring.groovy.template.prefix=
## Name of the RequestContext attribute for all views. / default :
# spring.groovy.template.request-context-attribute=
## Template path. / default : classpath:/templates/
# spring.groovy.template.resource-loader-path=classpath:/templates/
## Suffix that gets appended to view names when building a URL. / default : .tpl
# spring.groovy.template.suffix=.tpl
## View names that can be resolved. / default :
# spring.groovy.template.view-names=
## Whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name. / default : FALSE
# spring.mustache.allow-request-override=FALSE
## Whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name. / default : FALSE
# spring.mustache.allow-session-override=FALSE
## Whether to enable template caching. / default : FALSE
# spring.mustache.cache=FALSE
## Template encoding. / default : UTF-8
# spring.mustache.charset=UTF-8
## Whether to check that the templates location exists. / default : TRUE
# spring.mustache.check-template-location=TRUE
## Content-Type value. / default : text/html
# spring.mustache.content-type=text/html
## Whether to enable MVC view resolution for this technology. / default : TRUE
# spring.mustache.enabled=TRUE
## Whether all request attributes should be added to the model prior to merging with the template. / default : FALSE
# spring.mustache.expose-request-attributes=FALSE
## Whether all HttpSession attributes should be added to the model prior to merging with the template. / default : FALSE
# spring.mustache.expose-session-attributes=FALSE
## Whether to expose a RequestContext for use by Spring's macro library, under the name springMacroRequestContext. / default : TRUE
# spring.mustache.expose-spring-macro-helpers=TRUE
## Prefix to apply to template names. / default : classpath:/templates/
# spring.mustache.prefix=classpath:/templates/
## Name of the RequestContext attribute for all views. / default :
# spring.mustache.request-context-attribute=
## Suffix to apply to template names. / default : .mustache
# spring.mustache.suffix=.mustache
## View names that can be resolved. / default :
# spring.mustache.view-names=
## Whether to enable template caching. / default : TRUE
# spring.thymeleaf.cache=TRUE
## Whether to check that the template exists before rendering it. / default : TRUE
# spring.thymeleaf.check-template=TRUE
## Whether to check that the templates location exists. / default : TRUE
# spring.thymeleaf.check-template-location=TRUE
## Enable the SpringEL compiler in SpringEL expressions. / default : FALSE
# spring.thymeleaf.enable-spring-el-compiler=FALSE
## Whether to enable Thymeleaf view resolution for Web frameworks. / default : TRUE
# spring.thymeleaf.enabled=TRUE
## Template files encoding. / default : UTF-8
# spring.thymeleaf.encoding=UTF-8
## Comma-separated list of view names (patterns allowed) that should be excluded from resolution. / default :
# spring.thymeleaf.excluded-view-names=
## Template mode to be applied to templates. See also Thymeleaf's TemplateMode enum. / default : HTML
# spring.thymeleaf.mode=HTML
## Prefix that gets prepended to view names when building a URL. / default : classpath:/templates/
# spring.thymeleaf.prefix=classpath:/templates/
## Comma-separated list of view names (patterns allowed) that should be the only ones executed in CHUNKED mode when a max chunk size is set. / default :
# spring.thymeleaf.reactive.chunked-mode-view-names=
## Comma-separated list of view names (patterns allowed) that should be executed in FULL mode even if a max chunk size is set. / default :
# spring.thymeleaf.reactive.full-mode-view-names=
## Maximum size of data buffers used for writing to the response. Templates will execute in CHUNKED mode by default if this is set. / default : 0B
# spring.thymeleaf.reactive.max-chunk-size=0B
## Media types supported by the view technology. / default :
# spring.thymeleaf.reactive.media-types=
## Whether hidden form inputs acting as markers for checkboxes should be rendered before the checkbox element itself. / default : FALSE
# spring.thymeleaf.render-hidden-markers-before-checkboxes=FALSE
## Content-Type value written to HTTP responses. / default : text/html
# spring.thymeleaf.servlet.content-type=text/html
## Whether Thymeleaf should start writing partial output as soon as possible or buffer until template processing is finished. / default : TRUE
# spring.thymeleaf.servlet.produce-partial-output-while-processing=TRUE
## Suffix that gets appended to view names when building a URL. / default : .html
# spring.thymeleaf.suffix=.html
## Order of the template resolver in the chain. By default, the template resolver is first in the chain. Order start at 1 and should only be set if you have defined additional TemplateResolver beans. / default :
# spring.thymeleaf.template-resolver-order=
## Comma-separated list of view names (patterns allowed) that can be resolved. / default :
# spring.thymeleaf.view-names=


# 11. Server Properties

## Network address to which the server should bind. / default :
# server.address=
## Whether response compression is enabled. / default : FALSE
# server.compression.enabled=FALSE
## Comma-separated list of user agents for which responses should not be compressed. / default :
# server.compression.excluded-user-agents=
## Comma-separated list of MIME types that should be compressed. / default : [text/html, text/xml, text/plain, text/css, text/javascript, application/javascript, application/json, application/xml]
# server.compression.mime-types=[text/html, text/xml, text/plain, text/css, text/javascript, application/javascript, application/json, application/xml]
## Minimum Content-Length value that is required for compression to be performed. / default : 2KB
# server.compression.min-response-size=2KB
## When to include errors attribute. / default : never
# server.error.include-binding-errors=never
## Include the exception attribute. / default : FALSE
# server.error.include-exception=FALSE
## When to include message attribute. / default : never
# server.error.include-message=never
## When to include the trace attribute. / default : never
# server.error.include-stacktrace=never
## Path of the error controller. / default : /error
# server.error.path=/error
## Whether to enable the default error page displayed in browsers in case of a server error. / default : TRUE
# server.error.whitelabel.enabled=TRUE
## Strategy for handling X-Forwarded-* headers. / default :
# server.forward-headers-strategy=
## Whether to enable HTTP/2 support, if the current environment supports it. / default : FALSE
# server.http2.enabled=FALSE
## Append to log. / default : FALSE
# server.jetty.accesslog.append=FALSE
## Custom log format, see org.eclipse.jetty.server.CustomRequestLog. If defined, overrides the format configuration key. / default :
# server.jetty.accesslog.custom-format=
## Enable access log. / default : FALSE
# server.jetty.accesslog.enabled=FALSE
## Date format to place in log file name. / default :
# server.jetty.accesslog.file-date-format=
## Log filename. If not specified, logs redirect to System.err. / default :
# server.jetty.accesslog.filename=
## Log format. / default : ncsa
# server.jetty.accesslog.format=ncsa
## Request paths that should not be logged. / default :
# server.jetty.accesslog.ignore-paths=
## Number of days before rotated log files are deleted. / default : 31
# server.jetty.accesslog.retention-period=31
## Time that the connection can be idle before it is closed. / default :
# server.jetty.connection-idle-timeout=
## Maximum size of the form content in any HTTP post request. / default : 200000B
# server.jetty.max-http-form-post-size=200000B
## Number of acceptor threads to use. When the value is -1, the default, the number of acceptors is derived from the operating environment. / default : -1
# server.jetty.threads.acceptors=-1
## Maximum thread idle time. / default : 60000ms
# server.jetty.threads.idle-timeout=60000ms
## Maximum number of threads. / default : 200
# server.jetty.threads.max=200
## Maximum capacity of the thread pool's backing queue. A default is computed based on the threading configuration. / default :
# server.jetty.threads.max-queue-capacity=
## Minimum number of threads. / default : 8
# server.jetty.threads.min=8
## Number of selector threads to use. When the value is -1, the default, the number of selectors is derived from the operating environment. / default : -1
# server.jetty.threads.selectors=-1
## Maximum size of the HTTP message header. / default : 8KB
# server.max-http-header-size=8KB
## Connection timeout of the Netty channel. / default :
# server.netty.connection-timeout=
## Maximum content length of an H2C upgrade request. / default : 0B
# server.netty.h2c-max-content-length=0B
## Idle timeout of the Netty channel. When not specified, an infinite timeout is used. / default :
# server.netty.idle-timeout=
## Initial buffer size for HTTP request decoding. / default : 128B
# server.netty.initial-buffer-size=128B
## Maximum chunk size that can be decoded for an HTTP request. / default : 8KB
# server.netty.max-chunk-size=8KB
## Maximum length that can be decoded for an HTTP request's initial line. / default : 4KB
# server.netty.max-initial-line-length=4KB
## Whether to validate headers when decoding requests. / default : TRUE
# server.netty.validate-headers=TRUE
## Server HTTP port. / default : 8080
# server.port=8080
## Session timeout. If a duration suffix is not specified, seconds will be used. / default : 30m
# server.reactive.session.timeout=30m
## Value to use for the Server response header (if empty, no header is sent). / default :
# server.server-header=
## Display name of the application. / default : application
# server.servlet.application-display-name=application
## Servlet context init parameters. / default :
# server.servlet.context-parameters.*=
## Context path of the application. / default :
# server.servlet.context-path=
# server.servlet.encoding.charset=
## Whether to enable http encoding support. / default : TRUE
# server.servlet.encoding.enabled=TRUE
# server.servlet.encoding.force=
# server.servlet.encoding.force-request=
# server.servlet.encoding.force-response=
# server.servlet.encoding.mapping.*=
## Class name of the servlet to use for JSPs. If registered is true and this class * is on the classpath then it will be registered. / default : org.apache.jasper.servlet.JspServlet
# server.servlet.jsp.class-name=org.apache.jasper.servlet.JspServlet
## Init parameters used to configure the JSP servlet. / default :
# server.servlet.jsp.init-parameters.*=
## Whether the JSP servlet is registered. / default : TRUE
# server.servlet.jsp.registered=TRUE
## Whether to register the default Servlet with the container. / default : FALSE
# server.servlet.register-default-servlet=FALSE
# server.servlet.session.cookie.comment=
# server.servlet.session.cookie.domain=
# server.servlet.session.cookie.http-only=
# server.servlet.session.cookie.max-age=
# server.servlet.session.cookie.name=
# server.servlet.session.cookie.path=
# server.servlet.session.cookie.same-site=
# server.servlet.session.cookie.secure=
## Whether to persist session data between restarts. / default : FALSE
# server.servlet.session.persistent=FALSE
## Directory used to store session data. / default :
# server.servlet.session.store-dir=
## Session timeout. If a duration suffix is not specified, seconds will be used. / default : 30m
# server.servlet.session.timeout=30m
## Session tracking modes. / default :
# server.servlet.session.tracking-modes=
## Type of shutdown that the server will support. / default : immediate
# server.shutdown=immediate
## Supported SSL ciphers. / default :
# server.ssl.ciphers=
## Client authentication mode. Requires a trust store. / default :
# server.ssl.client-auth=
## Whether to enable SSL support. / default : TRUE
# server.ssl.enabled=TRUE
## Enabled SSL protocols. / default :
# server.ssl.enabled-protocols=
## Alias that identifies the key in the key store. / default :
# server.ssl.key-alias=
## Password used to access the key in the key store. / default :
# server.ssl.key-password=
## Path to the key store that holds the SSL certificate (typically a jks file). / default :
# server.ssl.key-store=
## Password used to access the key store. / default :
# server.ssl.key-store-password=
## Provider for the key store. / default :
# server.ssl.key-store-provider=
## Type of the key store. / default :
# server.ssl.key-store-type=
## SSL protocol to use. / default : TLS
# server.ssl.protocol=TLS
## Trust store that holds SSL certificates. / default :
# server.ssl.trust-store=
## Password used to access the trust store. / default :
# server.ssl.trust-store-password=
## Provider for the trust store. / default :
# server.ssl.trust-store-provider=
## Type of the trust store. / default :
# server.ssl.trust-store-type=
## Maximum queue length for incoming connection requests when all possible request processing threads are in use. / default : 100
# server.tomcat.accept-count=100
## Whether to buffer output such that it is flushed only periodically. / default : TRUE
# server.tomcat.accesslog.buffered=TRUE
## Whether to check for log file existence so it can be recreated it if an external process has renamed it. / default : FALSE
# server.tomcat.accesslog.check-exists=FALSE
## Whether logging of the request will only be enabled if ServletRequest.getAttribute(conditionIf) does not yield null. / default :
# server.tomcat.accesslog.condition-if=
## Whether logging of the request will only be enabled if ServletRequest.getAttribute(conditionUnless) yield null. / default :
# server.tomcat.accesslog.condition-unless=
## Directory in which log files are created. Can be absolute or relative to the Tomcat base dir. / default : logs
# server.tomcat.accesslog.directory=logs
## Enable access log. / default : FALSE
# server.tomcat.accesslog.enabled=FALSE
## Character set used by the log file. Default to the system default character set. / default :
# server.tomcat.accesslog.encoding=
## Date format to place in the log file name. / default : .yyyy-MM-dd
# server.tomcat.accesslog.file-date-format=.yyyy-MM-dd
## Whether to use IPv6 canonical representation format as defined by RFC 5952. / default : FALSE
# server.tomcat.accesslog.ipv6-canonical=FALSE
## Locale used to format timestamps in log entries and in log file name suffix. Default to the default locale of the Java process. / default :
# server.tomcat.accesslog.locale=
## Number of days to retain the access log files before they are removed. / default : -1
# server.tomcat.accesslog.max-days=-1
## Format pattern for access logs. / default : common
# server.tomcat.accesslog.pattern=common
## Log file name prefix. / default : access_log
# server.tomcat.accesslog.prefix=access_log
## Whether to defer inclusion of the date stamp in the file name until rotate time. / default : FALSE
# server.tomcat.accesslog.rename-on-rotate=FALSE
## Set request attributes for the IP address, Hostname, protocol, and port used for the request. / default : FALSE
# server.tomcat.accesslog.request-attributes-enabled=FALSE
## Whether to enable access log rotation. / default : TRUE
# server.tomcat.accesslog.rotate=TRUE
## Log file name suffix. / default : .log
# server.tomcat.accesslog.suffix=.log
## Comma-separated list of additional patterns that match jars to ignore for TLD scanning. The special '?' and '*' characters can be used in the pattern to match one and only one character and zero or more characters respectively. / default :
# server.tomcat.additional-tld-skip-patterns=
## Delay between the invocation of backgroundProcess methods. If a duration suffix is not specified, seconds will be used. / default : 10s
# server.tomcat.background-processor-delay=10s
## Tomcat base directory. If not specified, a temporary directory is used. / default :
# server.tomcat.basedir=
## Amount of time the connector will wait, after accepting a connection, for the request URI line to be presented. / default :
# server.tomcat.connection-timeout=
## Time to wait for another HTTP request before the connection is closed. When not set the connectionTimeout is used. When set to -1 there will be no timeout. / default :
# server.tomcat.keep-alive-timeout=
## Maximum number of connections that the server accepts and processes at any given time. Once the limit has been reached, the operating system may still accept connections based on the acceptCount property. / default : 8192
# server.tomcat.max-connections=8192
## Maximum size of the form content in any HTTP post request. / default : 2MB
# server.tomcat.max-http-form-post-size=2MB
## Maximum number of HTTP requests that can be pipelined before the connection is closed. When set to 0 or 1, keep-alive and pipelining are disabled. When set to -1, an unlimited number of pipelined or keep-alive requests are allowed. / default : 100
# server.tomcat.max-keep-alive-requests=100
## Maximum amount of request body to swallow. / default : 2MB
# server.tomcat.max-swallow-size=2MB
## Whether Tomcat's MBean Registry should be enabled. / default : FALSE
# server.tomcat.mbeanregistry.enabled=FALSE
## Maximum number of idle processors that will be retained in the cache and reused with a subsequent request. When set to -1 the cache will be unlimited with a theoretical maximum size equal to the maximum number of connections. / default : 200
# server.tomcat.processor-cache=200
## Whether requests to the context root should be redirected by appending a / to the path. When using SSL terminated at a proxy, this property should be set to false. / default : TRUE
# server.tomcat.redirect-context-root=TRUE
## Whether to reject requests with illegal header names or values. / default : TRUE
# server.tomcat.reject-illegal-header=TRUE
## Comma-separated list of additional unencoded characters that should be allowed in URI paths. Only < > [ \ ] ^ ` { | } are allowed. / default :
# server.tomcat.relaxed-path-chars=
## Comma-separated list of additional unencoded characters that should be allowed in URI query strings. Only < > [ \ ] ^ ` { | } are allowed. / default :
# server.tomcat.relaxed-query-chars=
## Name of the HTTP header from which the remote host is extracted. / default : X-Forwarded-Host
# server.tomcat.remoteip.host-header=X-Forwarded-Host
## Regular expression that matches proxies that are to be trusted. / default : 10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|192\\.168\\.\\d{1,3}\\.\\d{1,3}|169\\.254\\.\\d{1,3}\\.\\d{1,3}|127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3}|0:0:0:0:0:0:0:1|::1
# server.tomcat.remoteip.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|192\\.168\\.\\d{1,3}\\.\\d{1,3}|169\\.254\\.\\d{1,3}\\.\\d{1,3}|127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3}|0:0:0:0:0:0:0:1|::1
## Name of the HTTP header used to override the original port value. / default : X-Forwarded-Port
# server.tomcat.remoteip.port-header=X-Forwarded-Port
## Header that holds the incoming protocol, usually named X-Forwarded-Proto. / default :
# server.tomcat.remoteip.protocol-header=
## Value of the protocol header indicating whether the incoming request uses SSL. / default : https
# server.tomcat.remoteip.protocol-header-https-value=https
## Name of the HTTP header from which the remote IP is extracted. For instance, 'X-FORWARDED-FOR'. / default :
# server.tomcat.remoteip.remote-ip-header=
## Whether static resource caching is permitted for this web application. / default : TRUE
# server.tomcat.resource.allow-caching=TRUE
## Time-to-live of the static resource cache. / default :
# server.tomcat.resource.cache-ttl=
## Maximum amount of worker threads. / default : 200
# server.tomcat.threads.max=200
## Minimum amount of worker threads. / default : 10
# server.tomcat.threads.min-spare=10
## Character encoding to use to decode the URI. / default : UTF-8
# server.tomcat.uri-encoding=UTF-8
## Whether HTTP 1.1 and later location headers generated by a call to sendRedirect will use relative or absolute redirects. / default : FALSE
# server.tomcat.use-relative-redirects=FALSE
## Undertow access log directory. / default :
# server.undertow.accesslog.dir=
## Whether to enable the access log. / default : FALSE
# server.undertow.accesslog.enabled=FALSE
## Format pattern for access logs. / default : common
# server.undertow.accesslog.pattern=common
## Log file name prefix. / default : access_log.
# server.undertow.accesslog.prefix=access_log.
## Whether to enable access log rotation. / default : TRUE
# server.undertow.accesslog.rotate=TRUE
## Log file name suffix. / default : log
# server.undertow.accesslog.suffix=log
## Whether the server should decode percent encoded slash characters. Enabling encoded slashes can have security implications due to different servers interpreting the slash differently. Only enable this if you have a legacy application that requires it. / default : FALSE
# server.undertow.allow-encoded-slash=FALSE
## Whether the 'Connection: keep-alive' header should be added to all responses, even if not required by the HTTP specification. / default : TRUE
# server.undertow.always-set-keep-alive=TRUE
## Size of each buffer. The default is derived from the maximum amount of memory that is available to the JVM. / default :
# server.undertow.buffer-size=
## Whether the URL should be decoded. When disabled, percent-encoded characters in the URL will be left as-is. / default : TRUE
# server.undertow.decode-url=TRUE
## Whether to allocate buffers outside the Java heap. The default is derived from the maximum amount of memory that is available to the JVM. / default :
# server.undertow.direct-buffers=
## Whether servlet filters should be initialized on startup. / default : TRUE
# server.undertow.eager-filter-init=TRUE
## Maximum number of cookies that are allowed. This limit exists to prevent hash collision based DOS attacks. / default : 200
# server.undertow.max-cookies=200
## Maximum number of headers that are allowed. This limit exists to prevent hash collision based DOS attacks. / default :
# server.undertow.max-headers=
## Maximum size of the HTTP post content. When the value is -1, the default, the size is unlimited. / default : -1B
# server.undertow.max-http-post-size=-1B
## Maximum number of query or path parameters that are allowed. This limit exists to prevent hash collision based DOS attacks. / default :
# server.undertow.max-parameters=
## Amount of time a connection can sit idle without processing a request, before it is closed by the server. / default :
# server.undertow.no-request-timeout=
# server.undertow.options.server.*=
# server.undertow.options.socket.*=
## Whether to preserve the path of a request when it is forwarded. / default : FALSE
# server.undertow.preserve-path-on-forward=FALSE
## Number of I/O threads to create for the worker. The default is derived from the number of available processors. / default :
# server.undertow.threads.io=
## Number of worker threads. The default is 8 times the number of I/O threads. / default :
# server.undertow.threads.worker=
## Charset used to decode URLs. / default : UTF-8
# server.undertow.url-charset=UTF-8


# 12. Security Properties

## Security filter chain dispatcher types. / default : [async, error, request]
# spring.security.filter.dispatcher-types=[async, error, request]
## Security filter chain order. / default : -100
# spring.security.filter.order=-100
## OAuth provider details. / default :
# spring.security.oauth2.client.provider.*=
## OAuth client registrations. / default :
# spring.security.oauth2.client.registration.*=
## URI that can either be an OpenID Connect discovery endpoint or an OAuth 2.0 Authorization Server Metadata endpoint defined by RFC 8414. / default :
# spring.security.oauth2.resourceserver.jwt.issuer-uri=
## JSON Web Key URI to use to verify the JWT token. / default :
# spring.security.oauth2.resourceserver.jwt.jwk-set-uri=
## JSON Web Algorithm used for verifying the digital signatures. / default : RS256
# spring.security.oauth2.resourceserver.jwt.jws-algorithm=RS256
## Location of the file containing the public key used to verify a JWT. / default :
# spring.security.oauth2.resourceserver.jwt.public-key-location=
## Client id used to authenticate with the token introspection endpoint. / default :
# spring.security.oauth2.resourceserver.opaquetoken.client-id=
## Client secret used to authenticate with the token introspection endpoint. / default :
# spring.security.oauth2.resourceserver.opaquetoken.client-secret=
## OAuth 2.0 endpoint through which token introspection is accomplished. / default :
# spring.security.oauth2.resourceserver.opaquetoken.introspection-uri=
## SAML2 relying party registrations. / default :
# spring.security.saml2.relyingparty.registration.*=
## Default user name. / default : user
# spring.security.user.name=user
## Password for the default user name. / default :
# spring.security.user.password=
## Granted roles for the default user name. / default :
# spring.security.user.roles=


# 13. RSocket Properties

## Network address to which the server should bind. / default :
# spring.rsocket.server.address=
## Maximum transmission unit. Frames larger than the specified value are fragmented. / default :
# spring.rsocket.server.fragment-size=
## Path under which RSocket handles requests (only works with websocket transport). / default :
# spring.rsocket.server.mapping-path=
## Server port. / default :
# spring.rsocket.server.port=
# spring.rsocket.server.ssl.ciphers=
# spring.rsocket.server.ssl.client-auth=
# spring.rsocket.server.ssl.enabled=
# spring.rsocket.server.ssl.enabled-protocols=
# spring.rsocket.server.ssl.key-alias=
# spring.rsocket.server.ssl.key-password=
# spring.rsocket.server.ssl.key-store=
# spring.rsocket.server.ssl.key-store-password=
# spring.rsocket.server.ssl.key-store-provider=
# spring.rsocket.server.ssl.key-store-type=
# spring.rsocket.server.ssl.protocol=
# spring.rsocket.server.ssl.trust-store=
# spring.rsocket.server.ssl.trust-store-password=
# spring.rsocket.server.ssl.trust-store-provider=
# spring.rsocket.server.ssl.trust-store-type=
## RSocket transport protocol. / default : tcp
# spring.rsocket.server.transport=tcp


# 14. Actuator Properties

## Whether to enable storage of audit events. / default : TRUE
# management.auditevents.enabled=TRUE
## Whether to enable extended Cloud Foundry actuator endpoints. / default : TRUE
# management.cloudfoundry.enabled=TRUE
## Whether to skip SSL verification for Cloud Foundry actuator endpoint security calls. / default : FALSE
# management.cloudfoundry.skip-ssl-validation=FALSE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.auditevents.cache.time-to-live=0ms
## Whether to enable the auditevents endpoint. / default : TRUE
# management.endpoint.auditevents.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.beans.cache.time-to-live=0ms
## Whether to enable the beans endpoint. / default : TRUE
# management.endpoint.beans.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.caches.cache.time-to-live=0ms
## Whether to enable the caches endpoint. / default : TRUE
# management.endpoint.caches.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.conditions.cache.time-to-live=0ms
## Whether to enable the conditions endpoint. / default : TRUE
# management.endpoint.conditions.enabled=TRUE
## Keys that should be sanitized in addition to those already configured. Keys can be simple strings that the property ends with or regular expressions. / default :
# management.endpoint.configprops.additional-keys-to-sanitize=
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.configprops.cache.time-to-live=0ms
## Whether to enable the configprops endpoint. / default : TRUE
# management.endpoint.configprops.enabled=TRUE
## Keys that should be sanitized. Keys can be simple strings that the property ends with or regular expressions. / default : [password, secret, key, token, .*credentials.*, vcap_services, sun.java.command]
# management.endpoint.configprops.keys-to-sanitize=[password, secret, key, token, .*credentials.*, vcap_services, sun.java.command]
## Keys that should be sanitized in addition to those already configured. Keys can be simple strings that the property ends with or regular expressions. / default :
# management.endpoint.env.additional-keys-to-sanitize=
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.env.cache.time-to-live=0ms
## Whether to enable the env endpoint. / default : TRUE
# management.endpoint.env.enabled=TRUE
## Keys that should be sanitized. Keys can be simple strings that the property ends with or regular expressions. / default : [password, secret, key, token, .*credentials.*, vcap_services, sun.java.command]
# management.endpoint.env.keys-to-sanitize=[password, secret, key, token, .*credentials.*, vcap_services, sun.java.command]
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.flyway.cache.time-to-live=0ms
## Whether to enable the flyway endpoint. / default : TRUE
# management.endpoint.flyway.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.health.cache.time-to-live=0ms
## Whether to enable the health endpoint. / default : TRUE
# management.endpoint.health.enabled=TRUE
## Health endpoint groups. / default :
# management.endpoint.health.group.*=
## Whether to enable liveness and readiness probes. / default : FALSE
# management.endpoint.health.probes.enabled=FALSE
## Roles used to determine whether or not a user is authorized to be shown details. When empty, all authenticated users are authorized. / default :
# management.endpoint.health.roles=
## When to show components. If not specified the 'show-details' setting will be used. / default :
# management.endpoint.health.show-components=
## When to show full health details. / default : never
# management.endpoint.health.show-details=never
## Mapping of health statuses to HTTP status codes. By default, registered health statuses map to sensible defaults (for example, UP maps to 200). / default :
# management.endpoint.health.status.http-mapping.*=
## Comma-separated list of health statuses in order of severity. / default : [DOWN, OUT_OF_SERVICE, UP, UNKNOWN]
# management.endpoint.health.status.order=[DOWN, OUT_OF_SERVICE, UP, UNKNOWN]
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.heapdump.cache.time-to-live=0ms
## Whether to enable the heapdump endpoint. / default : TRUE
# management.endpoint.heapdump.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.httptrace.cache.time-to-live=0ms
## Whether to enable the httptrace endpoint. / default : TRUE
# management.endpoint.httptrace.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.info.cache.time-to-live=0ms
## Whether to enable the info endpoint. / default : TRUE
# management.endpoint.info.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.integrationgraph.cache.time-to-live=0ms
## Whether to enable the integrationgraph endpoint. / default : TRUE
# management.endpoint.integrationgraph.enabled=TRUE
## Jolokia settings. Refer to the documentation of Jolokia for more details. / default :
# management.endpoint.jolokia.config.*=
## Whether to enable the jolokia endpoint. / default : TRUE
# management.endpoint.jolokia.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.liquibase.cache.time-to-live=0ms
## Whether to enable the liquibase endpoint. / default : TRUE
# management.endpoint.liquibase.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.logfile.cache.time-to-live=0ms
## Whether to enable the logfile endpoint. / default : TRUE
# management.endpoint.logfile.enabled=TRUE
## External Logfile to be accessed. Can be used if the logfile is written by output redirect and not by the logging system itself. / default :
# management.endpoint.logfile.external-file=
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.loggers.cache.time-to-live=0ms
## Whether to enable the loggers endpoint. / default : TRUE
# management.endpoint.loggers.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.mappings.cache.time-to-live=0ms
## Whether to enable the mappings endpoint. / default : TRUE
# management.endpoint.mappings.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.metrics.cache.time-to-live=0ms
## Whether to enable the metrics endpoint. / default : TRUE
# management.endpoint.metrics.enabled=TRUE
## Whether to enable the prometheus endpoint. / default : TRUE
# management.endpoint.prometheus.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.quartz.cache.time-to-live=0ms
## Whether to enable the quartz endpoint. / default : TRUE
# management.endpoint.quartz.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.scheduledtasks.cache.time-to-live=0ms
## Whether to enable the scheduledtasks endpoint. / default : TRUE
# management.endpoint.scheduledtasks.enabled=TRUE
## Whether to enable the sessions endpoint. / default : TRUE
# management.endpoint.sessions.enabled=TRUE
## Whether to enable the shutdown endpoint. / default : FALSE
# management.endpoint.shutdown.enabled=FALSE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.startup.cache.time-to-live=0ms
## Whether to enable the startup endpoint. / default : TRUE
# management.endpoint.startup.enabled=TRUE
## Maximum time that a response can be cached. / default : 0ms
# management.endpoint.threaddump.cache.time-to-live=0ms
## Whether to enable the threaddump endpoint. / default : TRUE
# management.endpoint.threaddump.enabled=TRUE
## Whether to enable or disable all endpoints by default. / default :
# management.endpoints.enabled-by-default=
## Endpoints JMX domain name. Fallback to 'spring.jmx.default-domain' if set. / default : org.springframework.boot
# management.endpoints.jmx.domain=org.springframework.boot
## Endpoint IDs that should be excluded or '*' for all. / default :
# management.endpoints.jmx.exposure.exclude=
## Endpoint IDs that should be included or '*' for all. / default : *
# management.endpoints.jmx.exposure.include=*
## Additional static properties to append to all ObjectNames of MBeans representing Endpoints. / default :
# management.endpoints.jmx.static-names=
## Whether to transparently migrate legacy endpoint IDs. / default : FALSE
# management.endpoints.migrate-legacy-ids=FALSE
## Base path for Web endpoints. Relative to the servlet context path (server.servlet.context-path) or WebFlux base path (spring.webflux.base-path) when the management server is sharing the main server port. Relative to the management server base path (management.server.base-path) when a separate management server port (management.server.port) is configured. / default : /actuator
# management.endpoints.web.base-path=/actuator
## Whether credentials are supported. When not set, credentials are not supported. / default :
# management.endpoints.web.cors.allow-credentials=
## Comma-separated list of headers to allow in a request. '*' allows all headers. / default :
# management.endpoints.web.cors.allowed-headers=
## Comma-separated list of methods to allow. '*' allows all methods. When not set, defaults to GET. / default :
# management.endpoints.web.cors.allowed-methods=
## Comma-separated list of origin patterns to allow. Unlike allowed origins which only supports '*', origin patterns are more flexible (for example 'https://*.example.com') and can be used when credentials are allowed. When no allowed origin patterns or allowed origins are set, CORS support is disabled. / default :
# management.endpoints.web.cors.allowed-origin-patterns=
## Comma-separated list of origins to allow. '*' allows all origins. When credentials are allowed, '*' cannot be used and origin patterns should be configured instead. When no allowed origins or allowed origin patterns are set, CORS support is disabled. / default :
# management.endpoints.web.cors.allowed-origins=
## Comma-separated list of headers to include in a response. / default :
# management.endpoints.web.cors.exposed-headers=
## How long the response from a pre-flight request can be cached by clients. If a duration suffix is not specified, seconds will be used. / default : 1800s
# management.endpoints.web.cors.max-age=1800s
## Whether the discovery page is enabled. / default : TRUE
# management.endpoints.web.discovery.enabled=TRUE
## Endpoint IDs that should be excluded or '*' for all. / default :
# management.endpoints.web.exposure.exclude=
## Endpoint IDs that should be included or '*' for all. / default : [health]
# management.endpoints.web.exposure.include=[health]
## Mapping between endpoint IDs and the path that should expose them. / default :
# management.endpoints.web.path-mapping.*=
## Whether to enable Cassandra health check. / default : TRUE
# management.health.cassandra.enabled=TRUE
## Whether to enable Couchbase health check. / default : TRUE
# management.health.couchbase.enabled=TRUE
## Whether to enable database health check. / default : TRUE
# management.health.db.enabled=TRUE
## Whether to ignore AbstractRoutingDataSources when creating database health indicators. / default : FALSE
# management.health.db.ignore-routing-data-sources=FALSE
## Whether to enable default health indicators. / default : TRUE
# management.health.defaults.enabled=TRUE
## Whether to enable disk space health check. / default : TRUE
# management.health.diskspace.enabled=TRUE
## Path used to compute the available disk space. / default :
# management.health.diskspace.path=
## Minimum disk space that should be available. / default : 10MB
# management.health.diskspace.threshold=10MB
## Whether to enable Elasticsearch health check. / default : TRUE
# management.health.elasticsearch.enabled=TRUE
## Whether to enable InfluxDB health check. / default : TRUE
# management.health.influxdb.enabled=TRUE
## Whether to enable JMS health check. / default : TRUE
# management.health.jms.enabled=TRUE
## Whether to enable LDAP health check. / default : TRUE
# management.health.ldap.enabled=TRUE
## Whether to enable liveness state health check. / default : FALSE
# management.health.livenessstate.enabled=FALSE
## Whether to enable Mail health check. / default : TRUE
# management.health.mail.enabled=TRUE
## Whether to enable MongoDB health check. / default : TRUE
# management.health.mongo.enabled=TRUE
## Whether to enable Neo4j health check. / default : TRUE
# management.health.neo4j.enabled=TRUE
## Whether to enable ping health check. / default : TRUE
# management.health.ping.enabled=TRUE
## Whether to enable RabbitMQ health check. / default : TRUE
# management.health.rabbit.enabled=TRUE
## Whether to enable readiness state health check. / default : FALSE
# management.health.readinessstate.enabled=FALSE
## Whether to enable Redis health check. / default : TRUE
# management.health.redis.enabled=TRUE
## Whether to enable Solr health check. / default : TRUE
# management.health.solr.enabled=TRUE
# management.health.status.order=[DOWN, OUT_OF_SERVICE, UP, UNKNOWN]
## Whether to enable build info. / default : TRUE
# management.info.build.enabled=TRUE
## Whether to enable default info contributors. / default : TRUE
# management.info.defaults.enabled=TRUE
## Whether to enable environment info. / default : TRUE
# management.info.env.enabled=TRUE
## Whether to enable git info. / default : TRUE
# management.info.git.enabled=TRUE
## Mode to use to expose git information. / default : simple
# management.info.git.mode=simple
## Whether to enable Java info. / default : FALSE
# management.info.java.enabled=FALSE
# management.metrics.data.repository.autotime.enabled=TRUE
# management.metrics.data.repository.autotime.percentiles=
# management.metrics.data.repository.autotime.percentiles-histogram=FALSE
## Name of the metric for sent requests. / default : spring.data.repository.invocations
# management.metrics.data.repository.metric-name=spring.data.repository.invocations
## Number of histograms for meter IDs starting with the specified name to keep in the ring buffer. The longest match wins, the key `all` can also be used to configure all meters. / default :
# management.metrics.distribution.buffer-length.*=
## Maximum amount of time that samples for meter IDs starting with the specified name are accumulated to decaying distribution statistics before they are reset and rotated. The longest match wins, the key `all` can also be used to configure all meters. / default :
# management.metrics.distribution.expiry.*=
## Maximum value that meter IDs starting with the specified name are expected to observe. The longest match wins. Values can be specified as a double or as a Duration value (for timer meters, defaulting to ms if no unit specified). / default :
# management.metrics.distribution.maximum-expected-value.*=
## Minimum value that meter IDs starting with the specified name are expected to observe. The longest match wins. Values can be specified as a double or as a Duration value (for timer meters, defaulting to ms if no unit specified). / default :
# management.metrics.distribution.minimum-expected-value.*=
## Specific computed non-aggregable percentiles to ship to the backend for meter IDs starting-with the specified name. The longest match wins, the key 'all' can also be used to configure all meters. / default :
# management.metrics.distribution.percentiles.*=
## Whether meter IDs starting with the specified name should publish percentile histograms. For monitoring systems that support aggregable percentile calculation based on a histogram, this can be set to true. For other systems, this has no effect. The longest match wins, the key 'all' can also be used to configure all meters. / default :
# management.metrics.distribution.percentiles-histogram.*=
## Specific service-level objective boundaries for meter IDs starting with the specified name. The longest match wins. Counters will be published for each specified boundary. Values can be specified as a double or as a Duration value (for timer meters, defaulting to ms if no unit specified). / default :
# management.metrics.distribution.slo.*=
## 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. / default :
# management.metrics.enable.*=
## AppOptics API token. / default :
# management.metrics.export.appoptics.api-token=
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 500
# management.metrics.export.appoptics.batch-size=500
## Connection timeout for requests to this backend. / default : 5s
# management.metrics.export.appoptics.connect-timeout=5s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.appoptics.enabled=TRUE
## Whether to ship a floored time, useful when sending measurements from multiple hosts to align them on a given time boundary. / default : FALSE
# management.metrics.export.appoptics.floor-times=FALSE
## Tag that will be mapped to @host when shipping metrics to AppOptics. / default : instance
# management.metrics.export.appoptics.host-tag=instance
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.appoptics.read-timeout=10s
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.appoptics.step=1m
## URI to ship metrics to. / default : https://api.appoptics.com/v1/measurements
# management.metrics.export.appoptics.uri=https://api.appoptics.com/v1/measurements
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.atlas.batch-size=10000
## Frequency for refreshing config settings from the LWC service. / default : 10s
# management.metrics.export.atlas.config-refresh-frequency=10s
## Time to live for subscriptions from the LWC service. / default : 150s
# management.metrics.export.atlas.config-time-to-live=150s
## URI for the Atlas LWC endpoint to retrieve current subscriptions. / default : http://localhost:7101/lwc/api/v1/expressions/local-dev
# management.metrics.export.atlas.config-uri=http://localhost:7101/lwc/api/v1/expressions/local-dev
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.atlas.connect-timeout=1s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.atlas.enabled=TRUE
## URI for the Atlas LWC endpoint to evaluate the data for a subscription. / default : http://localhost:7101/lwc/api/v1/evaluate
# management.metrics.export.atlas.eval-uri=http://localhost:7101/lwc/api/v1/evaluate
## Whether to enable streaming to Atlas LWC. / default : FALSE
# management.metrics.export.atlas.lwc-enabled=FALSE
## Time to live for meters that do not have any activity. After this period the meter will be considered expired and will not get reported. / default : 15m
# management.metrics.export.atlas.meter-time-to-live=15m
## Number of threads to use with the metrics publishing scheduler. / default : 4
# management.metrics.export.atlas.num-threads=4
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.atlas.read-timeout=10s
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.atlas.step=1m
## URI of the Atlas server. / default : http://localhost:7101/api/v1/publish
# management.metrics.export.atlas.uri=http://localhost:7101/api/v1/publish
## Datadog API key. / default :
# management.metrics.export.datadog.api-key=
## Datadog application key. Not strictly required, but improves the Datadog experience by sending meter descriptions, types, and base units to Datadog. / default :
# management.metrics.export.datadog.application-key=
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.datadog.batch-size=10000
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.datadog.connect-timeout=1s
## Whether to publish descriptions metadata to Datadog. Turn this off to minimize the amount of metadata sent. / default : TRUE
# management.metrics.export.datadog.descriptions=TRUE
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.datadog.enabled=TRUE
## Tag that will be mapped to host when shipping metrics to Datadog. / default : instance
# management.metrics.export.datadog.host-tag=instance
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.datadog.read-timeout=10s
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.datadog.step=1m
## URI to ship metrics to. If you need to publish metrics to an internal proxy en-route to Datadog, you can define the location of the proxy with this. / default : https://api.datadoghq.com
# management.metrics.export.datadog.uri=https://api.datadoghq.com
## Whether to enable default metrics exporters. / default : TRUE
# management.metrics.export.defaults.enabled=TRUE
## Dynatrace authentication token. / default :
# management.metrics.export.dynatrace.api-token=
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.dynatrace.batch-size=10000
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.dynatrace.connect-timeout=1s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.dynatrace.enabled=TRUE
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.dynatrace.read-timeout=10s
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.dynatrace.step=1m
## URI to ship metrics to. Should be used for SaaS, self managed instances or to en-route through an internal proxy. / default :
# management.metrics.export.dynatrace.uri=
## ID of the custom device that is exporting metrics to Dynatrace. / default :
# management.metrics.export.dynatrace.v1.device-id=
## Group for exported metrics. Used to specify custom device group name in the Dynatrace UI. / default :
# management.metrics.export.dynatrace.v1.group=
## Technology type for exported metrics. Used to group metrics under a logical technology name in the Dynatrace UI. / default : java
# management.metrics.export.dynatrace.v1.technology-type=java
## Default dimensions that are added to all metrics in the form of key-value pairs. These are overwritten by Micrometer tags if they use the same key. / default :
# management.metrics.export.dynatrace.v2.default-dimensions.*=
## Whether to enable Dynatrace metadata export. / default : TRUE
# management.metrics.export.dynatrace.v2.enrich-with-dynatrace-metadata=TRUE
## Prefix string that is added to all exported metrics. / default :
# management.metrics.export.dynatrace.v2.metric-key-prefix=
## Base64-encoded credentials string. Mutually exclusive with user-name and password. / default :
# management.metrics.export.elastic.api-key-credentials=
## Whether to create the index automatically if it does not exist. / default : TRUE
# management.metrics.export.elastic.auto-create-index=TRUE
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.elastic.batch-size=10000
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.elastic.connect-timeout=1s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.elastic.enabled=TRUE
## Host to export metrics to. / default : http://localhost:9200
# management.metrics.export.elastic.host=http://localhost:9200
## Index to export metrics to. / default : micrometer-metrics
# management.metrics.export.elastic.index=micrometer-metrics
## Index date format used for rolling indices. Appended to the index name. / default : yyyy-MM
# management.metrics.export.elastic.index-date-format=yyyy-MM
## Prefix to separate the index name from the date format used for rolling indices. / default : -
# management.metrics.export.elastic.index-date-separator=-
## Login password of the Elastic server. Mutually exclusive with api-key-credentials. / default :
# management.metrics.export.elastic.password=
## Ingest pipeline name. By default, events are not pre-processed. / default :
# management.metrics.export.elastic.pipeline=
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.elastic.read-timeout=10s
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.elastic.step=1m
## Name of the timestamp field. / default : @timestamp
# management.metrics.export.elastic.timestamp-field-name=@timestamp
## Login user of the Elastic server. Mutually exclusive with api-key-credentials. / default :
# management.metrics.export.elastic.user-name=
## UDP addressing mode, either unicast or multicast. / default : multicast
# management.metrics.export.ganglia.addressing-mode=multicast
## Base time unit used to report durations. / default : milliseconds
# management.metrics.export.ganglia.duration-units=milliseconds
## Whether exporting of metrics to Ganglia is enabled. / default : TRUE
# management.metrics.export.ganglia.enabled=TRUE
## Host of the Ganglia server to receive exported metrics. / default : localhost
# management.metrics.export.ganglia.host=localhost
## Port of the Ganglia server to receive exported metrics. / default : 8649
# management.metrics.export.ganglia.port=8649
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.ganglia.step=1m
## Time to live for metrics on Ganglia. Set the multi-cast Time-To-Live to be one greater than the number of hops (routers) between the hosts. / default : 1
# management.metrics.export.ganglia.time-to-live=1
## Base time unit used to report durations. / default : milliseconds
# management.metrics.export.graphite.duration-units=milliseconds
## Whether exporting of metrics to Graphite is enabled. / default : TRUE
# management.metrics.export.graphite.enabled=TRUE
## Whether Graphite tags should be used, as opposed to a hierarchical naming convention. Enabled by default unless tagsAsPrefix is set. / default :
# management.metrics.export.graphite.graphite-tags-enabled=
## Host of the Graphite server to receive exported metrics. / default : localhost
# management.metrics.export.graphite.host=localhost
## Port of the Graphite server to receive exported metrics. / default : 2004
# management.metrics.export.graphite.port=2004
## Protocol to use while shipping data to Graphite. / default : pickled
# management.metrics.export.graphite.protocol=pickled
## Base time unit used to report rates. / default : seconds
# management.metrics.export.graphite.rate-units=seconds
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.graphite.step=1m
## For the hierarchical naming convention, turn the specified tag keys into part of the metric prefix. Ignored if graphiteTagsEnabled is true. / default : []
# management.metrics.export.graphite.tags-as-prefix=[]
## Humio API token. / default :
# management.metrics.export.humio.api-token=
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.humio.batch-size=10000
## Connection timeout for requests to this backend. / default : 5s
# management.metrics.export.humio.connect-timeout=5s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.humio.enabled=TRUE
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.humio.read-timeout=10s
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.humio.step=1m
## Humio tags describing the data source in which metrics will be stored. Humio tags are a distinct concept from Micrometer's tags. Micrometer's tags are used to divide metrics along dimensional boundaries. / default :
# management.metrics.export.humio.tags.*=
## URI to ship metrics to. If you need to publish metrics to an internal proxy en-route to Humio, you can define the location of the proxy with this. / default : https://cloud.humio.com
# management.metrics.export.humio.uri=https://cloud.humio.com
## API version of InfluxDB to use. Defaults to 'v1' unless an org is configured. If an org is configured, defaults to 'v2'. / default :
# management.metrics.export.influx.api-version=
## Whether to create the Influx database if it does not exist before attempting to publish metrics to it. InfluxDB v1 only. / default : TRUE
# management.metrics.export.influx.auto-create-db=TRUE
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.influx.batch-size=10000
## Bucket for metrics. Use either the bucket name or ID. Defaults to the value of the db property if not set. InfluxDB v2 only. / default :
# management.metrics.export.influx.bucket=
## Whether to enable GZIP compression of metrics batches published to Influx. / default : TRUE
# management.metrics.export.influx.compressed=TRUE
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.influx.connect-timeout=1s
## Write consistency for each point. / default : one
# management.metrics.export.influx.consistency=one
## Database to send metrics to. InfluxDB v1 only. / default : mydb
# management.metrics.export.influx.db=mydb
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.influx.enabled=TRUE
## Org to write metrics to. InfluxDB v2 only. / default :
# management.metrics.export.influx.org=
## Login password of the Influx server. InfluxDB v1 only. / default :
# management.metrics.export.influx.password=
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.influx.read-timeout=10s
## Time period for which Influx should retain data in the current database. For instance 7d, check the influx documentation for more details on the duration format. InfluxDB v1 only. / default :
# management.metrics.export.influx.retention-duration=
## Retention policy to use (Influx writes to the DEFAULT retention policy if one is not specified). InfluxDB v1 only. / default :
# management.metrics.export.influx.retention-policy=
## How many copies of the data are stored in the cluster. Must be 1 for a single node instance. InfluxDB v1 only. / default :
# management.metrics.export.influx.retention-replication-factor=
## Time range covered by a shard group. For instance 2w, check the influx documentation for more details on the duration format. InfluxDB v1 only. / default :
# management.metrics.export.influx.retention-shard-duration=
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.influx.step=1m
## Authentication token to use with calls to the InfluxDB backend. For InfluxDB v1, the Bearer scheme is used. For v2, the Token scheme is used. / default :
# management.metrics.export.influx.token=
## URI of the Influx server. / default : http://localhost:8086
# management.metrics.export.influx.uri=http://localhost:8086
## Login user of the Influx server. InfluxDB v1 only. / default :
# management.metrics.export.influx.user-name=
## Metrics JMX domain name. / default : metrics
# management.metrics.export.jmx.domain=metrics
## Whether exporting of metrics to JMX is enabled. / default : TRUE
# management.metrics.export.jmx.enabled=TRUE
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.jmx.step=1m
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.kairos.batch-size=10000
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.kairos.connect-timeout=1s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.kairos.enabled=TRUE
## Login password of the KairosDB server. / default :
# management.metrics.export.kairos.password=
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.kairos.read-timeout=10s
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.kairos.step=1m
## URI of the KairosDB server. / default : http://localhost:8080/api/v1/datapoints
# management.metrics.export.kairos.uri=http://localhost:8080/api/v1/datapoints
## Login user of the KairosDB server. / default :
# management.metrics.export.kairos.user-name=
## New Relic account ID. / default :
# management.metrics.export.newrelic.account-id=
## New Relic API key. / default :
# management.metrics.export.newrelic.api-key=
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.newrelic.batch-size=10000
## Client provider type to use. / default :
# management.metrics.export.newrelic.client-provider-type=
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.newrelic.connect-timeout=1s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.newrelic.enabled=TRUE
## The event type that should be published. This property will be ignored if 'meter-name-event-type-enabled' is set to 'true'. / default : SpringBootSample
# management.metrics.export.newrelic.event-type=SpringBootSample
## Whether to send the meter name as the event type instead of using the 'event-type' configuration property value. Can be set to 'true' if New Relic guidelines are not being followed or event types consistent with previous Spring Boot releases are required. / default : FALSE
# management.metrics.export.newrelic.meter-name-event-type-enabled=FALSE
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.newrelic.read-timeout=10s
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.newrelic.step=1m
## URI to ship metrics to. / default : https://insights-collector.newrelic.com
# management.metrics.export.newrelic.uri=https://insights-collector.newrelic.com
## Whether to enable publishing descriptions as part of the scrape payload to Prometheus. Turn this off to minimize the amount of data sent on each scrape. / default : TRUE
# management.metrics.export.prometheus.descriptions=TRUE
## Whether exporting of metrics to Prometheus is enabled. / default : TRUE
# management.metrics.export.prometheus.enabled=TRUE
## Histogram type for backing DistributionSummary and Timer. / default : prometheus
# management.metrics.export.prometheus.histogram-flavor=prometheus
## Base URL for the Pushgateway. / default : http://localhost:9091
# management.metrics.export.prometheus.pushgateway.base-url=http://localhost:9091
## Enable publishing via a Prometheus Pushgateway. / default : FALSE
# management.metrics.export.prometheus.pushgateway.enabled=FALSE
## Grouping key for the pushed metrics. / default :
# management.metrics.export.prometheus.pushgateway.grouping-key.*=
## Job identifier for this application instance. / default :
# management.metrics.export.prometheus.pushgateway.job=
## Login password of the Prometheus Pushgateway. / default :
# management.metrics.export.prometheus.pushgateway.password=
## Frequency with which to push metrics. / default : 1m
# management.metrics.export.prometheus.pushgateway.push-rate=1m
## Operation that should be performed on shutdown. / default : none
# management.metrics.export.prometheus.pushgateway.shutdown-operation=none
## Login user of the Prometheus Pushgateway. / default :
# management.metrics.export.prometheus.pushgateway.username=
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.prometheus.step=1m
## SignalFX access token. / default :
# management.metrics.export.signalfx.access-token=
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.signalfx.batch-size=10000
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.signalfx.connect-timeout=1s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.signalfx.enabled=TRUE
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.signalfx.read-timeout=10s
## Uniquely identifies the app instance that is publishing metrics to SignalFx. Defaults to the local host name. / default :
# management.metrics.export.signalfx.source=
## Step size (i.e. reporting frequency) to use. / default : 10s
# management.metrics.export.signalfx.step=10s
## URI to ship metrics to. / default : https://ingest.signalfx.com
# management.metrics.export.signalfx.uri=https://ingest.signalfx.com
## Whether, in the absence of any other exporter, exporting of metrics to an in-memory backend is enabled. / default : TRUE
# management.metrics.export.simple.enabled=TRUE
## Counting mode. / default : cumulative
# management.metrics.export.simple.mode=cumulative
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.simple.step=1m
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.stackdriver.batch-size=10000
## Connection timeout for requests to this backend. / default : 1s
# management.metrics.export.stackdriver.connect-timeout=1s
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.stackdriver.enabled=TRUE
## Identifier of the Google Cloud project to monitor. / default :
# management.metrics.export.stackdriver.project-id=
## Read timeout for requests to this backend. / default : 10s
# management.metrics.export.stackdriver.read-timeout=10s
## Monitored resource's labels. / default :
# management.metrics.export.stackdriver.resource-labels.*=
## Monitored resource type. / default : global
# management.metrics.export.stackdriver.resource-type=global
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.stackdriver.step=1m
## Whether to use semantically correct metric types. When false, counter metrics are published as the GAUGE MetricKind. When true, counter metrics are published as the CUMULATIVE MetricKind. / default : FALSE
# management.metrics.export.stackdriver.use-semantic-metric-types=FALSE
## Whether exporting of metrics to StatsD is enabled. / default : TRUE
# management.metrics.export.statsd.enabled=TRUE
## StatsD line protocol to use. / default : datadog
# management.metrics.export.statsd.flavor=datadog
## Host of the StatsD server to receive exported metrics. / default : localhost
# management.metrics.export.statsd.host=localhost
## Total length of a single payload should be kept within your network's MTU. / default : 1400
# management.metrics.export.statsd.max-packet-length=1400
## How often gauges will be polled. When a gauge is polled, its value is recalculated and if the value has changed (or publishUnchangedMeters is true), it is sent to the StatsD server. / default : 10s
# management.metrics.export.statsd.polling-frequency=10s
## Port of the StatsD server to receive exported metrics. / default : 8125
# management.metrics.export.statsd.port=8125
## Protocol of the StatsD server to receive exported metrics. / default : udp
# management.metrics.export.statsd.protocol=udp
## Whether to send unchanged meters to the StatsD server. / default : TRUE
# management.metrics.export.statsd.publish-unchanged-meters=TRUE
## API token used when publishing metrics directly to the Wavefront API host. / default :
# management.metrics.export.wavefront.api-token=
## Number of measurements per request to use for this backend. If more measurements are found, then multiple requests will be made. / default : 10000
# management.metrics.export.wavefront.batch-size=10000
## Whether exporting of metrics to this backend is enabled. / default : TRUE
# management.metrics.export.wavefront.enabled=TRUE
## Global prefix to separate metrics originating from this app's white box instrumentation from those originating from other Wavefront integrations when viewed in the Wavefront UI. / default :
# management.metrics.export.wavefront.global-prefix=
# management.metrics.export.wavefront.sender.flush-interval=1s
# management.metrics.export.wavefront.sender.max-queue-size=50000
# management.metrics.export.wavefront.sender.message-size=
## Unique identifier for the app instance that is the source of metrics being published to Wavefront. Defaults to the local host name. / default :
# management.metrics.export.wavefront.source=
## Step size (i.e. reporting frequency) to use. / default : 1m
# management.metrics.export.wavefront.step=1m
## URI to ship metrics to. / default : https://longboard.wavefront.com
# management.metrics.export.wavefront.uri=https://longboard.wavefront.com
## Whether to enable Mongo client command metrics. / default : TRUE
# management.metrics.mongo.command.enabled=TRUE
## Whether to enable Mongo connection pool metrics. / default : TRUE
# management.metrics.mongo.connectionpool.enabled=TRUE
## Comma-separated list of paths to report disk metrics for. / default : [.]
# management.metrics.system.diskspace.paths=[.]
## Common tags that are applied to every meter. / default :
# management.metrics.tags.*=
## Whether auto-configured MeterRegistry implementations should be bound to the global static registry on Metrics. For testing, set this to 'false' to maximize test independence. / default : TRUE
# management.metrics.use-global-registry=TRUE
## Maximum number of unique URI tag values allowed. After the max number of tag values is reached, metrics with additional tag values are denied by filter. / default : 100
# management.metrics.web.client.max-uri-tags=100
## Whether to automatically time web client requests. / default : TRUE
# management.metrics.web.client.request.autotime.enabled=TRUE
## Computed non-aggregable percentiles to publish. / default :
# management.metrics.web.client.request.autotime.percentiles=
## Whether percentile histograms should be published. / default : FALSE
# management.metrics.web.client.request.autotime.percentiles-histogram=FALSE
## Name of the metric for sent requests. / default : http.client.requests
# management.metrics.web.client.request.metric-name=http.client.requests
## Maximum number of unique URI tag values allowed. After the max number of tag values is reached, metrics with additional tag values are denied by filter. / default : 100
# management.metrics.web.server.max-uri-tags=100
## Whether to automatically time web server requests. / default : TRUE
# management.metrics.web.server.request.autotime.enabled=TRUE
## Computed non-aggregable percentiles to publish. / default :
# management.metrics.web.server.request.autotime.percentiles=
## Whether percentile histograms should be published. / default : FALSE
# management.metrics.web.server.request.autotime.percentiles-histogram=FALSE
## Whether the trailing slash should be ignored when recording metrics. / default : TRUE
# management.metrics.web.server.request.ignore-trailing-slash=TRUE
## Name of the metric for received requests. / default : http.server.requests
# management.metrics.web.server.request.metric-name=http.server.requests
## Add the X-Application-Context HTTP header in each response. / default : FALSE
# management.server.add-application-context-header=FALSE
## Network address to which the management endpoints should bind. Requires a custom management.server.port. / default :
# management.server.address=
## Management endpoint base path (for instance, '/management'). Requires a custom management.server.port. / default :
# management.server.base-path=
## Management endpoint HTTP port (uses the same port as the application by default). Configure a different port to use management-specific SSL. / default :
# management.server.port=
## Supported SSL ciphers. / default :
# management.server.ssl.ciphers=
## Client authentication mode. Requires a trust store. / default :
# management.server.ssl.client-auth=
## Whether to enable SSL support. / default : TRUE
# management.server.ssl.enabled=TRUE
## Enabled SSL protocols. / default :
# management.server.ssl.enabled-protocols=
## Alias that identifies the key in the key store. / default :
# management.server.ssl.key-alias=
## Password used to access the key in the key store. / default :
# management.server.ssl.key-password=
## Path to the key store that holds the SSL certificate (typically a jks file). / default :
# management.server.ssl.key-store=
## Password used to access the key store. / default :
# management.server.ssl.key-store-password=
## Provider for the key store. / default :
# management.server.ssl.key-store-provider=
## Type of the key store. / default :
# management.server.ssl.key-store-type=
## SSL protocol to use. / default : TLS
# management.server.ssl.protocol=TLS
## Trust store that holds SSL certificates. / default :
# management.server.ssl.trust-store=
## Password used to access the trust store. / default :
# management.server.ssl.trust-store-password=
## Provider for the trust store. / default :
# management.server.ssl.trust-store-provider=
## Type of the trust store. / default :
# management.server.ssl.trust-store-type=
## Whether to enable HTTP request-response tracing. / default : TRUE
# management.trace.http.enabled=TRUE
## Items to be included in the trace. Defaults to request headers (excluding Authorization and Cookie), response headers (excluding Set-Cookie), and time taken. / default : [request-headers, response-headers, errors]
# management.trace.http.include=[request-headers, response-headers, errors]


# 15. Devtools Properties

## Whether to enable development property defaults. / default : TRUE
# spring.devtools.add-properties=TRUE
## Whether to enable a livereload.com-compatible server. / default : TRUE
# spring.devtools.livereload.enabled=TRUE
## Server port. / default : 35729
# spring.devtools.livereload.port=35729
## Context path used to handle the remote connection. / default : /.~~spring-boot!~
# spring.devtools.remote.context-path=/.~~spring-boot!~
## The host of the proxy to use to connect to the remote application. / default :
# spring.devtools.remote.proxy.host=
## The port of the proxy to use to connect to the remote application. / default :
# spring.devtools.remote.proxy.port=
## Whether to enable remote restart. / default : TRUE
# spring.devtools.remote.restart.enabled=TRUE
## A shared secret required to establish a connection (required to enable remote support). / default :
# spring.devtools.remote.secret=
## HTTP header used to transfer the shared secret. / default : X-AUTH-TOKEN
# spring.devtools.remote.secret-header-name=X-AUTH-TOKEN
## Additional patterns that should be excluded from triggering a full restart. / default :
# spring.devtools.restart.additional-exclude=
## Additional paths to watch for changes. / default :
# spring.devtools.restart.additional-paths=
## Whether to enable automatic restart. / default : TRUE
# spring.devtools.restart.enabled=TRUE
## Patterns that should be excluded from triggering a full restart. / default : META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties,META-INF/build-info.properties
# spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties,META-INF/build-info.properties
## Whether to log the condition evaluation delta upon restart. / default : TRUE
# spring.devtools.restart.log-condition-evaluation-delta=TRUE
## Amount of time to wait between polling for classpath changes. / default : 1s
# spring.devtools.restart.poll-interval=1s
## Amount of quiet time required without any classpath changes before a restart is triggered. / default : 400ms
# spring.devtools.restart.quiet-period=400ms
## Name of a specific file that, when changed, triggers the restart check. Must be a simple name (without any path) of a file that appears on your classpath. If not specified, any classpath file change triggers the restart. / default :
# spring.devtools.restart.trigger-file=


# 16. Testing Properties

## Type of existing DataSource to replace. / default : any
# spring.test.database.replace=any
## MVC Print option. / default : default
# spring.test.mockmvc.print=default