# ===================================================================
# COMMON SPRING BOOT PROPERTIES
#
# This sample file is provided as a guideline. Do NOT copy it in its
# entirety to your own application. ^^^
# ===================================================================
#
# CORE PROPERTIES
#
# BANNER
=UTF-8 # Banner file encoding.
=classpath: # Banner file location.
=classpath: # Banner image file location (jpg/png can also be used).
= # Width of the banner image in chars (default 76)
= # Height of the banner image in chars (default based on image height)
= # Left hand image margin in chars (default 2)
= # If images should be inverted for dark terminal themes (default false)
# LOGGING
= # Location of the logging configuration file. For instance `classpath:` for Logback
-conversion-word=%wEx # Conversion word used when logging exceptions.
= # Log file name. For instance ``
.max-history= # Maximum of archive log files to keep. Only supported with the default logback setup.
.max-size= # Maximum log file size. Only supported with the default logback setup.
logging.level.*= # Log levels severity mapping. For instance `logging.level.=DEBUG`
= # Location of the log file. For instance `/var/log`
= # Appender pattern for output to the console. Only supported with the default logback setup.
= # Appender pattern for output to the file. Only supported with the default logback setup.
.level= # Appender pattern for log level (default %5p). Only supported with the default logback setup.
= # Appender pattern for log dateformat (default yyyy-MM-dd HH:mm:). Only supported with the default logback setup.
-shutdown-hook=false # Register a shutdown hook for the logging system when it is initialized.
# AOP
=true # Add @EnableAspectJAutoProxy.
-target-class=true # Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false).
# IDENTITY (ContextIdApplicationContextInitializer)
.index= # Application index.
.name= # Application name.
# ADMIN (SpringApplicationAdminJmxAutoConfiguration)
=false # Enable admin features for the application.
-name=:type=Admin,name=SpringApplication # JMX name of the application admin MBean.
# AUTO-CONFIGURATION
= # Auto-configuration classes to exclude.
# SPRING CORE
.ignore=true # Skip search of BeanInfo classes.
# SPRING CACHE (CacheProperties)
-names= # Comma-separated list of cache names to create if supported by the underlying cache manager.
= # The spec to use to create caches. Check CaffeineSpec for more details on the spec format.
=0 # Entry expiration in milliseconds. By default the entries never expire.
= # The location of the configuration file to use to initialize EhCache.
= # The location of the configuration file to use to initialize Infinispan.
= # The location of the configuration file to use to initialize the cache manager.
= # Fully qualified name of the CachingProvider implementation to use to retrieve the JSR-107 compliant cache manager. Only needed if more than one JSR-107 implementation is available on the classpath.
-null-values=true # Allow caching null values.
.key-prefix= # Key prefix.
.time-to-live=0 # Entry expiration in milliseconds. By default the entries never expire.
-key-prefix=true # Whether to use the key prefix when writing to Redis.
= # Cache type, auto-detected according to the environment by default.
# SPRING CONFIG - using environment property only (ConfigFileApplicationListener)
= # Config file locations.
.name=application # Config file name.
# HAZELCAST (HazelcastProperties)
= # The location of the configuration file to use to initialize Hazelcast.
# PROJECT INFORMATION (ProjectInfoProperties)
=classpath:META-INF/ # Location of the generated file.
=classpath: # Location of the generated file.
# JMX
.default-domain= # JMX domain name.
=true # Expose management beans to the JMX domain.
=mbeanServer # MBeanServer bean name.
# Email (MailProperties)
.default-encoding=UTF-8 # Default MimeMessage encoding.
= # SMTP server host. For instance ``
-name= # Session JNDI name. When set, takes precedence to others mail settings.
.password= # Login password of the SMTP server.
= # SMTP server port.
.*= # Additional JavaMail session properties.
=smtp # Protocol used by the SMTP server.
-connection=false # Test that the mail server is available on startup.
= # Login user of the SMTP server.
# APPLICATION SETTINGS (SpringApplication)
-mode=console # Mode used to display the banner when the application runs.
= # Sources (class name, package name or XML resource location) to include in the ApplicationContext.
-application-type= # Flag to explicitly request a specific type of web application. Auto-detected based on the classpath if not set.
# FILE ENCODING (FileEncodingApplicationListener)
-file-encoding= # Expected character encoding the application must use.
# INTERNATIONALIZATION (MessageSourceAutoConfiguration)
-use-message-format=false # Set whether to always apply the MessageFormat rules, parsing even messages without arguments.
=messages # Comma-separated list of basenames, each following the ResourceBundle convention.
-seconds=-1 # Loaded resource bundle files cache expiration, in seconds. When set to -1, bundles are cached forever.
=UTF-8 # Message bundles encoding.
-to-system-locale=true # Set whether to fall back to the system Locale if no files for a specific Locale have been found.
-code-as-default-message=false # Set whether to use the message code as default message instead of throwing a "NoSuchMessageException". Recommended during development only.
# OUTPUT
spring.output.=detect # Configure the ANSI output.
# PID FILE (ApplicationPidFileWriter)
-on-write-error= # Fail if ApplicationPidFileWriter is used but it cannot write the PID file.
= # Location of the PID file to write (if ApplicationPidFileWriter is used).
# PROFILES
= # Comma-separated list (or list if using YAML) of active profiles.
= # Unconditionally activate the specified comma separated profiles (or list of profiles if using YAML).
# QUARTZ SCHEDULER (QuartzProperties)
-store-type=memory # Quartz job store type.
.*= # Additional Quartz Scheduler properties.
-schema=embedded # Database schema initialization mode.
.schema=classpath:org/quartz/impl/jdbcjobstore/tables_@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
# Reactor
=false # Set whether Reactor should collect stacktrace information at runtime.
# SENDGRID (SendGridAutoConfiguration)
-key= # SendGrid API key.
= # SendGrid proxy host.
= # SendGrid proxy port.
#
# WEB PROPERTIES
#
# EMBEDDED SERVER CONFIGURATION (ServerProperties)
= # Network address to which the server should bind to.
=false # If response compression is enabled.
-user-agents= # List of user-agents to exclude from compression.
-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript # Comma-separated list of MIME types that should be compressed.
.min-response-size=2048 # Minimum response size that is required for compression to be performed.
server.connection-timeout= # Time in milliseconds that connectors will wait for another HTTP request before closing the connection. When not set, the connector's container-specific default will be used. Use a value of -1 to indicate no (. infinite) timeout.
-name=application # Display name of the application.
server.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.
-exception=false # Include the "exception" attribute.
-stacktrace=never # When to include a "stacktrace" attribute.
=/error # Path of the error controller.
=true # Enable the default error page displayed in browsers in case of a server error.
server.=true # Whether to enable HTTP/2 support, if the current environment supports it.
= # Number of acceptor threads to use.
=false # Append to log.
.date-format=dd/MMM/yyyy:HH:mm:ss Z # Timestamp format of the request log.
=false # Enable access log.
-format=false # Enable extended NCSA format.
-date-format= # Date format to place in log file name.
= # Log filename. If not specified, logs will be redirected to "".
= # Locale of the request log.
-cookies=false # Enable logging of the request cookies.
-latency=false # Enable logging of request processing time.
-server=false # Enable logging of the request hostname.
-period=31 # Number of days before rotated log files are deleted.
.time-zone=GMT # Timezone of the request log.
.max-http-post-size=0 # Maximum size in bytes of the HTTP post or put content.
= # Number of selector threads to use.
=8080 # Server HTTP port.
-header= # Value to use for the Server response header (no header is sent if empty)
-forward-headers= # If X-Forwarded-* headers should be applied to the HttpRequest.
-parameters.*= # Servlet context init parameters
-path= # Context path of the application.
-name= # The class name of the JSP servlet.
-parameters.*= # Init parameters used to configure the JSP servlet
=true # Whether or not the JSP servlet is registered
=/ # Path of the main dispatcher servlet.
= # Comment for the session cookie.
= # Domain for the session cookie.
-only= # "HttpOnly" flag for the session cookie.
.max-age= # Maximum age of the session cookie in seconds.
.name= # Session cookie name.
= # Path of the session cookie.
= # "Secure" flag for the session cookie.
=false # Persist session data between restarts.
-dir= # Directory used to store session data.
= # Session timeout in seconds.
-modes= # Session tracking modes (one or more of the following: "cookie", "url", "ssl").
= # Supported SSL ciphers.
-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store.
= # Enable SSL support.
-protocols= # Enabled SSL protocols.
.key-alias= # Alias that identifies the key in the key store.
.key-password= # Password used to access the key in the key store.
.key-store= # Path to the key store that holds the SSL certificate (typically a jks file).
.key-store-password= # Password used to access the key store.
.key-store-provider= # Provider for the key store.
.key-store-type= # Type of the key store.
=TLS # SSL protocol to use.
-store= # Trust store that holds SSL certificates.
-store-password= # Password used to access the trust store.
-store-provider= # Provider for the trust store.
-store-type= # Type of the trust store.
-count= # Maximum queue length for incoming connection requests when all possible request processing threads are in use.
=true # Buffer output such that it is only flushed periodically.
=logs # Directory in which log files are created. Can be relative to the tomcat base dir or absolute.
=false # Enable access log.
-date-format=.yyyy-MM-dd # Date format to place in log file name.
=common # Format pattern for access logs.
=access_log # Log file name prefix.
-on-rotate=false # Defer inclusion of the date stamp in the file name until rotate time.
-attributes-enabled=false # Set request attributes for IP address, Hostname, protocol and port used for the request.
=true # Enable access log rotation.
=.log # Log file name suffix.
-tld-skip-patterns= # Comma-separated list of additional patterns that match jars to ignore for TLD scanning.
-processor-delay=30 # Delay in seconds between the invocation of backgroundProcess methods.
= # Tomcat base directory. If not specified a temporary directory will be used.
-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} # regular expression matching trusted IP addresses.
.max-connections= # Maximum number of connections that the server will accept and process at any given time.
.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.
.max-http-post-size=0 # Maximum size in bytes of the HTTP post content.
.max-threads=0 # Maximum amount of worker threads.
.min-spare-threads=0 # Minimum amount of worker threads.
-header=X-Forwarded-Port # Name of the HTTP header used to override the original port value.
-header= # Header that holds the incoming protocol, usually named "X-Forwarded-Proto".
-header-https-value=https # Value of the protocol header that indicates that the incoming request uses SSL.
-context-root= # Whether requests to the context root should be redirected by appending a / to the path.
-ip-header= # Name of the http header from which the remote ip is extracted. For instance `X-FORWARDED-FOR`
-ttl=5000 # Time-to-live in milliseconds of the static resource cache.
-encoding=UTF-8 # Character encoding to use to decode the URI.
= # Undertow access log directory.
=false # Enable access log.
=common # Format pattern for access logs.
=access_log. # Log file name prefix.
=true # Enable access log rotation.
=log # Log file name suffix.
-size= # Size of each buffer in bytes.
-buffers= # Allocate buffers outside the Java heap.
-threads= # Number of I/O threads to create for the worker.
-filter-init=true # Whether servlet filters should be initialized on startup.
.max-http-post-size=0 # Maximum size in bytes of the HTTP post content.
-threads= # Number of worker threads.
# FREEMARKER (FreeMarkerAutoConfiguration)
-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
=false # Enable template caching.
=UTF-8 # Template encoding.
.check-template-location=true # Check that the templates location exists.
-type=text/html # Content-Type value.
=true # Enable MVC view resolution for this technology.
-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.
-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
-file-system-access=true # Prefer file system access for template loading. File system access enables hot detection of template changes.
= # Prefix that gets prepended to view names when building a URL.
-context-attribute= # Name of the RequestContext attribute for all views.
.*= # Well-known FreeMarker keys which will be passed to FreeMarker's Configuration.
=.ftl # Suffix that gets appended to view names when building a URL.
-loader-path=classpath:/templates/ # Comma-separated list of template paths.
.view-names= # White list of view names that can be resolved.
# GROOVY TEMPLATES (GroovyTemplateAutoConfiguration)
-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
= # Enable template caching.
=UTF-8 # Template encoding.
.check-template-location=true # Check that the templates location exists.
.*= # See GroovyMarkupConfigurer
-type=test/html # Content-Type value.
=true # Enable MVC view resolution for this technology.
-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.
-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
= # Prefix that gets prepended to view names when building a URL.
-context-attribute= # Name of the RequestContext attribute for all views.
-loader-path=classpath:/templates/ # Template path.
=.tpl # Suffix that gets appended to view names when building a URL.
.view-names= # White list of view names that can be resolved.
# SPRING HATEOAS (HateoasProperties)
-hal-as-default-json-media-type=true # Specify if application/hal+json responses should be sent to requests that accept application/json.
# HTTP message conversion
-json-mapper= # Preferred JSON mapper to use for HTTP message conversion, auto-detected according to the environment by default.
# HTTP encoding (HttpEncodingProperties)
=UTF-8 # Charset of HTTP requests and responses. Added to the "Content-Type" header if not set explicitly.
=true # Enable http encoding support.
.force= # Force the encoding to the configured charset on HTTP requests and responses.
.force-request= # Force the encoding to the configured charset on HTTP requests. Defaults to true when "force" has not been specified.
.force-response= # Force the encoding to the configured charset on HTTP responses.
= # Locale to Encoding mapping.
# MULTIPART (MultipartProperties)
=true # Enable support of multipart uploads.
-size-threshold=0 # Threshold after which files will be written to disk. Values can use the suffixes "MB" or "KB" to indicate megabytes or kilobytes respectively.
= # Intermediate location of uploaded files.
.max-file-size=1MB # Max file size. Values can use the suffixes "MB" or "KB" to indicate megabytes or kilobytes respectively.
.max-request-size=10MB # Max request size. Values can use the suffixes "MB" or "KB" to indicate megabytes or kilobytes respectively.
-lazily=false # Whether to resolve the multipart request lazily at the time of file or parameter access.
# JACKSON (JacksonProperties)
.date-format= # Date format string or a fully-qualified date format class name. For instance `yyyy-MM-dd HH:mm:ss`.
.default-property-inclusion= # Controls the inclusion of properties during serialization.
.*= # Jackson on/off features that affect the way Java objects are deserialized.
.*= # Jackson on/off features for generators.
-date-time-format= # Joda date time format string. If not configured, "date-format" will be used as a fallback if it is configured with a format string.
= # Locale used for formatting.
.*= # Jackson general purpose on/off features.
.*= # Jackson on/off features for parsers.
-naming-strategy= # One of the constants on Jackson's PropertyNamingStrategy. Can also be a fully-qualified class name of a PropertyNamingStrategy subclass.
.*= # Jackson on/off features that affect the way Java objects are serialized.
.time-zone= # Time zone used when formatting dates. For instance `America/Los_Angeles`
# JERSEY (JerseyProperties)
-path= # Path that serves as the base URI for the application. Overrides the value of "@ApplicationPath" if specified.
.order=0 # Jersey filter chain order.
.*= # Init parameters to pass to Jersey via the servlet or filter.
.load-on-startup=-1 # Load on startup priority of the Jersey servlet.
=servlet # Jersey integration type.
# SPRING LDAP (LdapProperties)
= # LDAP URLs of the server.
= # Base suffix from which all operations should originate.
= # Login user of the server.
.password= # Login password of the server.
-environment.*= # LDAP specification settings.
# EMBEDDED LDAP (EmbeddedLdapProperties)
-dn= # The base DN
= # Embedded LDAP username.
.password= # Embedded LDAP password.
=classpath:schema.ldif # Schema (LDIF) script resource reference.
= # Embedded LDAP port.
=true # Enable LDAP schema validation.
.schema= # Path to the custom schema.
# MUSTACHE TEMPLATES (MustacheAutoConfiguration)
-request-override= # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
-session-override= # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
= # Enable template caching.
= # Template encoding.
.check-template-location= # Check that the templates location exists.
-type= # Content-Type value.
= # Enable MVC view resolution for this technology.
-request-attributes= # Set whether all request attributes should be added to the model prior to merging with the template.
-session-attributes= # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
-spring-macro-helpers= # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
=classpath:/templates/ # Prefix to apply to template names.
-context-attribute= # Name of the RequestContext attribute for all views.
=.mustache # Suffix to apply to template names.
.view-names= # White list of view names that can be resolved.
# SPRING MVC (WebMvcProperties)
-timeout= # Amount of time (in milliseconds) before asynchronous request handling times out.
.date-format= # Date format to use. For instance `dd/MM/yyyy`.
-trace-request=false # Dispatch TRACE requests to the FrameworkServlet doService method.
-options-request=true # Dispatch OPTIONS requests to the FrameworkServlet doService method.
=true # Enable resolution of .
=true # Enable Spring's HttpPutFormContentFilter.
.ignore-default-model-on-redirect=true # If the content of the "default" model should be ignored during redirect scenarios.
= # Locale to use. By default, this locale is overridden by the "Accept-Language" header.
-resolver=accept-header # Define how the locale should be resolved.
-resolved-exception=false # Enable warn logging of exceptions resolved by a "HandlerExceptionResolver".
-types.*= # Maps file extensions to media types for content negotiation.
-codes-resolver-format= # Formatting strategy for message codes. For instance `PREFIX_ERROR_CODE`.
.load-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.
.static-path-pattern=/** # Path pattern used for static resources.
-exception-if-no-handler-found=false # If a "NoHandlerFoundException" should be thrown if no Handler was found to process a request.
.view.prefix= # Spring MVC view prefix.
.view.suffix= # Spring MVC view suffix.
# SPRING RESOURCES HANDLING (ResourceProperties)
.add-mappings=true # Enable default resource handling.
-period= # Cache period for the resources served by the resource handler, in seconds.
=true # Enable caching in the Resource chain.
= # Enable the Spring Resource Handling chain. Disabled by default unless at least one strategy has been enabled.
=false # Enable resolution of already gzipped resources.
-application-cache=false # Enable HTML5 application cache manifest rewriting.
=false # Enable the content Version Strategy.
=/** # Comma-separated list of patterns to apply to the Version Strategy.
=false # Enable the fixed Version Strategy.
=/** # Comma-separated list of patterns to apply to the Version Strategy.
= # Version string to use for the Version Strategy.
.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/ # Locations of static resources.
# SPRING SESSION (SessionProperties)
-type= # Session store type.
-order=-2147483598 # Session repository filter order.
-dispatcher-types=ASYNC,ERROR,REQUEST # Session repository filter dispatcher types.
# SPRING SESSION HAZELCAST (HazelcastSessionProperties)
-mode=on-save # Sessions flush mode.
-name=spring:session:sessions # Name of the map used to store sessions.
# SPRING SESSION JDBC (JdbcSessionProperties)
-cron=0 * * * * * # Cron expression for expired session cleanup job.
-schema=embedded # Database schema initialization mode.
.schema=classpath:org/springframework/session/jdbc/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
.table-name=SPRING_SESSION # Name of database table used to store sessions.
# SPRING SESSION MONGODB (MongoSessionProperties)
-name=sessions # Collection name used to store sessions.
# SPRING SESSION REDIS (RedisSessionProperties)
-cron=0 * * * * * # Cron expression for expired session cleanup job.
-mode=on-save # Sessions flush mode.
= # Namespace for keys used to store sessions.
# SPRING SOCIAL (SocialWebAutoConfiguration)
-connection-views=false # Enable the connection status view for supported providers.
# SPRING SOCIAL FACEBOOK (FacebookAutoConfiguration)
-id= # your application's Facebook App ID
-secret= # your application's Facebook App Secret
# SPRING SOCIAL LINKEDIN (LinkedInAutoConfiguration)
-id= # your application's LinkedIn App ID
-secret= # your application's LinkedIn App Secret
# SPRING SOCIAL TWITTER (TwitterAutoConfiguration)
-id= # your application's Twitter App ID
-secret= # your application's Twitter App Secret
# THYMELEAF (ThymeleafAutoConfiguration)
=true # Enable template caching.
.check-template=true # Check that the template exists before rendering it.
.check-template-location=true # Check that the templates location exists.
=true # Enable Thymeleaf view resolution for Web frameworks.
=UTF-8 # Template files encoding.
-view-names= # Comma-separated list of view names that should be excluded from resolution.
=HTML5 # Template mode to be applied to templates. See also StandardTemplateModeHandlers.
=classpath:/templates/ # Prefix that gets prepended to view names when building a URL.
.max-chunk-size= # Maximum size of data buffers used for writing to the response, in bytes.
-types= # Media types supported by the view technology.
-type=text/html # Content-Type value written to HTTP responses.
=.html # Suffix that gets appended to view names when building a URL.
-resolver-order= # Order of the template resolver in the chain.
.view-names= # Comma-separated list of view names that can be resolved.
# SPRING WEB FLUX (WebFluxProperties)
.static-path-pattern=/** # Path pattern used for static resources.
# SPRING WEB SERVICES (WebServicesProperties)
=/services # Path that serves as the base URI for the services.
= # Servlet init parameters to pass to Spring Web Services.
.load-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.
-locations= # Comma-separated list of locations of WSDLs and accompanying XSDs to be exposed as beans.
#
# SECURITY PROPERTIES
#
# SECURITY (SecurityProperties)
.order=0 # Security filter chain order.
-types=ASYNC,ERROR,REQUEST # Security filter chain dispatcher types.
# SECURITY OAUTH2 CLIENT (OAuth2ClientProperties)
..*= # OAuth provider details.
..*= # OAuth client registrations.
#
# DATA PROPERTIES
#
# FLYWAY (FlywayProperties)
-mixed-migrations= #
-description= #
-on-migrate= #
-version=1 # version to start migration
.check-location=true # Check that migration scripts location exists.
-disabled= #
-on-validation-error= #
=true # Enable flyway.
= #
.group= #
.ignore-failed-future-migration= #
.ignore-future-migrations= #
.ignore-missing-migrations= #
-sqls= # SQL statements to execute to initialize a connection immediately after obtaining it.
-by= #
=classpath:db/migration # locations of migrations scripts
= #
.out-of-order= #
.password= # JDBC password if you want Flyway to create its own DataSource
-prefix= #
-replacement= #
-suffix= #
.*= #
.repeatable-sql-migration-prefix= #
= # schemas to update
-default-callbacks= #
-default-resolvers= #
-migration-prefix=V #
-migration-separator= #
-migration-suffix=.sql #
.table= #
= #
= # JDBC url of the database to migrate. If not set, the primary configured data source is used.
.user= # Login user of the database to migrate.
-on-migrate= #
# LIQUIBASE (LiquibaseProperties)
-log=classpath:/db/changelog/ # Change log configuration path.
.check-change-log-location=true # Check the change log location exists.
= # Comma-separated list of runtime contexts to use.
.default-schema= # Default database schema.
.drop-first=false # Drop the database schema first.
=true # Enable liquibase support.
= # Comma-separated list of runtime labels to use.
.*= # Change log parameters.
.password= # Login password of the database to migrate.
.rollback-file= # File to which rollback SQL will be written when an update is performed.
= # JDBC url of the database to migrate. If not set, the primary configured data source is used.
.user= # Login user of the database to migrate.
# COUCHBASE (CouchbaseProperties)
-hosts= # Couchbase nodes (host or IP address) to bootstrap from.
.name=default # Name of the bucket to connect to.
.password= # Password of the bucket.
.key-value=1 # Number of sockets per node against the Key/value service.
=1 # Number of sockets per node against the Query (N1QL) service.
.view=1 # Number of sockets per node against the view service.
= # Enable SSL support. Enabled automatically if a "keyStore" is provided unless specified otherwise.
.key-store= # Path to the JVM key store that holds the certificates.
.key-store-password= # Password used to access the key store.
.connect=5000 # Bucket connections timeout in milliseconds.
.key-value=2500 # Blocking operations performed on a specific key timeout in milliseconds.
=7500 # N1QL query operations timeout in milliseconds.
-connect=1000 # Socket connect connections timeout in milliseconds.
.view=7500 # Regular and geospatial view operations timeout in milliseconds.
# DAO (PersistenceExceptionTranslationAutoConfiguration)
=true # Enable the PersistenceExceptionTranslationPostProcessor.
# CASSANDRA (CassandraProperties)
-name= # Name of the Cassandra cluster.
=none # Compression supported by the Cassandra binary protocol.
.connect-timeout-millis= # Socket option: connection time out.
-level= # Queries consistency level.
-points=localhost # Comma-separated list of cluster node addresses.
.fetch-size= # Queries default fetch size.
-name= # Keyspace name to use.
.load-balancing-policy= # Class name of the load balancing policy.
= # Port of the Cassandra server.
.password= # Login password of the server.
-interval=30 # Heartbeat interval (in seconds) after which a message is sent on an idle connection to make sure it's still alive.
-timeout=120 # Idle timeout (in seconds) before an idle connection is removed.
.max-queue-size=256 # Maximum number of requests that get enqueued if no connection is available.
-timeout=5000 # Pool timeout (in milliseconds) when trying to acquire a connection from a host's pool.
=true # Enable Cassandra reactive repositories.
.read-timeout-millis= # Socket option: read time out.
-policy= # Reconnection policy class.
= # Enable Cassandra repositories.
-policy= # Class name of the retry policy.
-consistency-level= # Queries serial consistency level.
.schema-action=none # Schema action to take at startup.
=false # Enable SSL support.
= # Login user of the server.
# DATA COUCHBASE (CouchbaseDataProperties)
-index=false # Automatically create views and indexes.
=read-your-own-writes # Consistency to apply by default on generated queries.
=true # Enable Couchbase reactive repositories.
=true # Enable Couchbase repositories.
# ELASTICSEARCH (ElasticsearchProperties)
-name=elasticsearch # Elasticsearch cluster name.
-nodes= # Comma-separated list of cluster node addresses.
.*= # Additional properties used to configure the client.
=true # Enable Elasticsearch repositories.
# DATA LDAP
=true # Enable LDAP repositories.
# MONGODB (MongoProperties)
-database= # Authentication database name.
.database=test # Database name.
-naming-strategy= # Fully qualified name of the FieldNamingStrategy to use.
-fs-database= # GridFS database name.
=localhost # Mongo server host. Cannot be set with uri.
.password= # Login password of the mongo server. Cannot be set with uri.
=27017 # Mongo server port. Cannot be set with uri.
=true # Enable Mongo reactive repositories.
=true # Enable Mongo repositories.
=mongodb://localhost/test # Mongo database URI. Cannot be set with host, port and credentials.
= # Login user of the mongo server. Cannot be set with uri.
# DATA REDIS
=true # Enable Redis repositories.
# NEO4J (Neo4jProperties)
.-index=none # Auto index mode.
.=true # Enable embedded mode if the embedded driver is available.
.neo4j.open-in-view=true # Register OpenSessionInViewInterceptor. Binds a Neo4j Session to the thread for the entire processing of the request.
.neo4j.password= # Login password of the server.
.=true # Enable Neo4j repositories.
.= # URI used by the driver. Auto-detected by default.
.= # Login user of the server.
# DATA REST (RepositoryRestProperties)
-path= # Base path to be used by Spring Data REST to expose repository resources.
.default-page-size= # Default size of pages.
-strategy=default # Strategy to use to determine which repositories get exposed.
-enum-translation= # Enable enum value translation via the Spring Data REST default resource bundle.
-param-name= # Name of the URL query string parameter that indicates how many results to return at once.
.max-page-size= # Maximum size of pages.
-param-name= # Name of the URL query string parameter that indicates what page to return.
.return-body-on-create= # Return a response body after creating an entity.
.return-body-on-update= # Return a response body after updating an entity.
-param-name= # Name of the URL query string parameter that indicates what direction to sort results.
# SOLR (SolrProperties)
=http://127.0.0.1:8983/solr # Solr host. Ignored if "zk-host" is set.
=true # Enable Solr repositories.
-host= # ZooKeeper host address in the form HOST:PORT.
# DATA WEB (SpringDataWebProperties)
.default-page-size=20 # Default page size.
-parameter=page # Page index parameter name.
.size-parameter=size # Page size parameter name.
-parameter=sort # Sort parameter name.
# DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
.continue-on-error=false # Do not stop if an error occurs while initializing the database.
= # Data (DML) script resource references.
-username= # User of the database to execute DML scripts (if different).
-password= # Password of the database to execute DML scripts (if different).
.dbcp2.*= # Commons DBCP2 specific settings
-class-name= # Fully qualified name of the JDBC driver. Auto-detected based on the URL by default.
-unique-name=false # Generate a random datasource name.
.*= # Hikari specific settings
-mode=embedded # Initialize the datasource using available DDL and DML scripts.
-enabled=false # Enable JMX support (if provided by the underlying pool).
-name= # JNDI location of the datasource. Class, url, username & password are ignored when set.
.name=testdb # Name of the datasource.
.password= # Login password of the database.
=all # Platform to use in the DDL or DML scripts (. schema-${platform}.sql or data-${platform}.sql).
.schema= # Schema (DDL) script resource references.
.schema-username= # User of the database to execute DDL scripts (if different).
.schema-password= # Password of the database to execute DDL scripts (if different).
=; # Statement separator in SQL initialization scripts.
-script-encoding= # SQL scripts encoding.
.*= # Tomcat datasource specific settings
= # Fully qualified name of the connection pool implementation to use. By default, it is auto-detected from the classpath.
= # JDBC url of the database.
= # Login user of the database.
-source-class-name= # XA datasource fully qualified name.
= # Properties to pass to the XA data source.
# JEST (Elasticsearch HTTP client) (JestProperties)
.connection-timeout=3000 # Connection timeout in milliseconds.
-threaded=true # Enable connection requests from multiple execution threads.
.password= # Login password.
= # Proxy host the HTTP client should use.
= # Proxy port the HTTP client should use.
.read-timeout=3000 # Read timeout in milliseconds.
=http://localhost:9200 # Comma-separated list of the Elasticsearch instances to use.
= # Login user.
# H2 Web Console (H2ConsoleProperties)
spring.=false # Enable the console.
spring.=/h2-console # Path at which the console will be available.
spring.=false # Enable trace output.
spring.-allow-others=false # Enable remote access.
# InfluxDB (InfluxDbProperties)
.password= # Login password.
= # Url of the InfluxDB instance to connect to.
.user= # Login user.
# JOOQ (JooqAutoConfiguration)
-dialect= # Sql dialect to use, auto-detected by default.
# JDBC (JdbcProperties)
.fetch-size=-1 # Number of rows that should be fetched from the database when more rows are needed.
.max-rows=-1 # Maximum number of rows.
-timeout=-1 # Query timeout in seconds.
# JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)
=true # Enable JPA repositories.
.database= # Target database to operate on, auto-detected by default. Can be alternatively set using the "databasePlatform" property.
.database-platform= # Name of the target database to operate on, auto-detected by default. Can be alternatively set using the "Database" enum.
-ddl=false # Initialize the schema on startup.
-auto= # DDL mode. This is actually a shortcut for the "hibernate." property. Default to "create-drop" when using an embedded database and no schema manager was detected, "none" otherwise.
-strategy= # Hibernate 5 implicit naming strategy fully qualified name.
-strategy= # Hibernate 5 physical naming strategy fully qualified name.
-new-id-generator-mappings= # Use Hibernate's newer IdentifierGenerator for AUTO, TABLE and SEQUENCE.
-resources= # Mapping resources (equivalent to "mapping-file" entries in ).
.open-in-view=true # Register OpenEntityManagerInViewInterceptor. Binds a JPA EntityManager to the thread for the entire processing of the request.
.*= # Additional native properties to set on the JPA provider.
-sql=false # Enable logging of SQL statements.
# JTA (JtaAutoConfiguration)
=true # Enable JTA support.
-dir= # Transaction logs directory.
.transaction-manager-id= # Transaction manager unique identifier.
# ATOMIKOS (AtomikosProperties)
-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.
.ignore-session-transacted-flag=true # Whether or not to ignore the transacted flag when creating session.
.local-transaction-mode=false # Whether or not local transactions are desired.
-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.
.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
.max-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.
.max-pool-size=1 # The maximum size of the pool.
.min-pool-size=1 # The minimum size of the pool.
-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.
.unique-resource-name=jmsConnectionFactory # The unique name used to identify the resource during recovery.
-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.
.default-isolation-level= # Default isolation level of connections provided by the pool.
-timeout= # Timeout, in seconds, for establishing a database connection.
-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.
.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
.max-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.
.max-pool-size=1 # The maximum size of the pool.
.min-pool-size=1 # The minimum size of the pool.
-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.
-query= # SQL query or statement used to validate a connection before returning it.
.unique-resource-name=dataSource # The unique name used to identify the resource during recovery.
-sub-transactions=true # Specify if sub-transactions are allowed.
.checkpoint-interval=500 # Interval between checkpoints.
.default-jta-timeout=10000 # Default timeout for JTA transactions.
-logging=true # Enable disk logging.
.force-shutdown-on-vm-exit=false # Specify if a VM shutdown should trigger forced shutdown of the transaction core.
-base-dir= # Directory in which the log files should be stored.
-base-name=tmlog # Transactions log file base name.
.max-actives=50 # Maximum number of active transactions.
.max-timeout=300000 # Maximum timeout (in milliseconds) that can be allowed for transactions.
=10000 # Delay between two recovery scans.
-orphaned-log-entries-delay=86400000 # Delay after which recovery can cleanup pending ('orphaned') log entries.
.max-retries=5 # Number of retry attempts to commit the transaction before throwing an exception.
-interval=10000 # Delay between retry attempts.
-jta-transactions=true # Specify if sub-transactions should be joined when possible.
= # Transaction manager implementation that should be started.
-two-phase-commit=false # Use different (and concurrent) threads for two-phase commit on the participating resources.
.transaction-manager-unique-name= # Transaction manager's unique name.
# BITRONIX
-increment=1 # Number of connections to create when growing the pool.
-interval=1 # Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.
-timeout=30 # Timeout, in seconds, for acquiring connections from the pool.
-local-transactions=true # Whether or not the transaction manager should allow mixing XA and non-XA transactions.
-transaction-timeout=false # Whether or not the transaction timeout should be set on the XAResource when it is enlisted.
-enlisting-enabled=true # Whether or not resources should be enlisted and delisted automatically.
-producers-consumers=true # Whether or not produces and consumers should be cached.
-connection-release=true # Whether or not the provider can run many transactions on the same connection and supports transaction interleaving.
.ignore-recovery-failures=false # Whether or not recovery failures should be ignored.
.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
.max-pool-size=10 # The maximum size of the pool. 0 denotes no limit.
.min-pool-size=0 # The minimum size of the pool.
.password= # The password to use to connect to the JMS provider.
-transaction-connections=false # Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.
-connections=true # Whether or not connections should be tested when acquired from the pool.
-pc-ordering-position=1 # The position that this resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is Integer.MAX_VALUE).
.unique-name=jmsConnectionFactory # The unique name used to identify the resource during recovery.
-tm-join=true Whether or not TMJOIN should be used when starting XAResources.
.user= # The user to use to connect to the JMS provider.
-increment=1 # Number of connections to create when growing the pool.
-interval=1 # Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.
-timeout=30 # Timeout, in seconds, for acquiring connections from the pool.
-local-transactions=true # Whether or not the transaction manager should allow mixing XA and non-XA transactions.
-transaction-timeout=false # Whether or not the transaction timeout should be set on the XAResource when it is enlisted.
-enlisting-enabled=true # Whether or not resources should be enlisted and delisted automatically.
.cursor-holdability= # The default cursor holdability for connections.
-connection-release=true # Whether or not the database can run many transactions on the same connection and supports transaction interleaving.
-jdbc4-connection-test= # Whether or not Connection.isValid() is called when acquiring a connection from the pool.
.ignore-recovery-failures=false # Whether or not recovery failures should be ignored.
.isolation-level= # The default isolation level for connections.
.local-auto-commit= # The default auto-commit mode for local transactions.
-timeout= # Timeout, in seconds, for establishing a database connection.
.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
.max-pool-size=10 # The maximum size of the pool. 0 denotes no limit.
.min-pool-size=0 # The minimum size of the pool.
-statement-cache-size=0 # The target size of the prepared statement cache. 0 disables the cache.
-transaction-connections=false # Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.
-query= # SQL query or statement used to validate a connection before returning it.
-pc-ordering-position=1 # The position that this resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is Integer.MAX_VALUE).
.unique-name=dataSource # The unique name used to identify the resource during recovery.
-tm-join=true Whether or not TMJOIN should be used when starting XAResources.
-multiple-lrc=false # Allow multiple LRC resources to be enlisted into the same transaction.
.asynchronous2-pc=false # Enable asynchronously execution of two phase commit.
-recovery-interval-seconds=60 # Interval in seconds at which to run the recovery process in the background.
.current-node-only-recovery=true # Recover only the current node.
-zero-resource-transaction=false # Log the creation and commit call stacks of transactions executed without a single enlisted resource.
.default-transaction-timeout=60 # Default transaction timeout in seconds.
-jmx=false # Enable JMX support.
-analyzer= # Set the fully qualified name of the exception analyzer implementation to use.
-log-status=false # Enable filtering of logs so that only mandatory logs are written.
.force-batching-enabled=true # Set if disk forces are batched.
-write-enabled=true # Set if logs are forced to disk.
-shutdown-interval=60 # Maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown time.
-transaction-synchronization-registry-name= # JNDI name of the TransactionSynchronizationRegistry.
-user-transaction-name= # JNDI name of the UserTransaction.
=disk # Name of the journal. Can be 'disk', 'null' or a class name.
-part1-filename= # Name of the first fragment of the journal.
-part2-filename= # Name of the second fragment of the journal.
.max-log-size-in-mb=2 # Maximum size in megabytes of the journal fragments.
-configuration-filename= # ResourceLoader configuration file name.
-id= # ASCII ID that must uniquely identify this TM instance. Default to the machine's IP address.
-corrupted-logs=false # Skip corrupted transactions log entries.
-about-zero-resource-transaction=true # Log a warning for transactions executed without a single enlisted resource.
# NARAYANA (NarayanaProperties)
.default-timeout=60 # Transaction timeout in seconds.
-scanners= # Comma-separated list of expiry scanners.
-dir= # Transaction object store directory.
-phase-commit=true # Enable one phase commit optimisation.
-recovery-period=120 # Interval in which periodic recovery scans are performed in seconds.
-backoff-period=10 # Back off period between first and second phases of the recovery scan in seconds.
-db-pass= # Database password to be used by recovery manager.
-db-user= # Database username to be used by recovery manager.
-jms-pass= # JMS password to be used by recovery manager.
-jms-user= # JMS username to be used by recovery manager.
-modules= # Comma-separated list of recovery modules.
.transaction-manager-id=1 # Unique transaction manager id.
-resource-orphan-filters= # Comma-separated list of orphan filters.
# EMBEDDED MONGODB (EmbeddedMongoProperties)
=SYNC_DELAY # Comma-separated list of features to enable.
.database-dir= # Directory used for data storage.
-size= # Maximum size of the oplog in megabytes.
-set-name= # Name of the replica set.
=2.6.10 # Version of Mongo to use.
# REDIS (RedisProperties)
.max-redirects= # Maximum number of redirects to follow when executing commands across the cluster.
= # Comma-separated list of "host:port" pairs to bootstrap from.
.database=0 # Database index used by the connection factory.
= # Connection URL, will override host, port and password (user will be ignored), . redis://user:password@:6379
=localhost # Redis server host.
.max-active=8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
.max-idle=8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
.max-wait=-1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
.min-idle=0 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
.max-active=8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
.max-idle=8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
.max-wait=-1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
.min-idle=0 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
-timeout=100 # Shutdown timeout in milliseconds.
.password= # Login password of the redis server.
=6379 # Redis server port.
= # Name of Redis server.
= # Comma-separated list of host:port pairs.
=false # Enable SSL support.
=0 # Connection timeout in milliseconds.
# TRANSACTION (TransactionProperties)
spring.transaction.default-timeout= # Default transaction timeout in seconds.
spring.transaction.rollback-on-commit-failure= # Perform the rollback on commit failures.
#
# INTEGRATION PROPERTIES
#
# ACTIVEMQ (ActiveMQProperties)
-url= # URL of the ActiveMQ broker. Auto-generated by default.
.close-timeout=15000 # Time to wait, in milliseconds, before considering a close complete.
.in-memory=true # Specify if the default broker URL should be in memory. Ignored if an explicit broker has been specified.
-blocking-redelivery=false # Do not stop message delivery before re-delivering messages from a rolled back transaction. This implies that message order will not be preserved when this is enabled.
.password= # Login password of the broker.
-timeout=0 # Time to wait, in milliseconds, on Message sends for a response. Set it to 0 to indicate to wait forever.
.user= # Login user of the broker.
-all= # Trust all packages.
= # Comma-separated list of specific packages to trust (when not trusting all packages).
-if-full=true # Block when a connection is requested and the pool is full. Set it to false to throw a "JMSException" instead.
-if-full-timeout=-1 # Blocking period, in milliseconds, before throwing an exception if the pool is still full.
.create-connection-on-startup=true # Create a connection on startup. Can be used to warm-up the pool on startup.
=false # Whether a PooledConnectionFactory should be created instead of a regular ConnectionFactory.
-timeout=0 # Connection expiration timeout in milliseconds.
-timeout=30000 # Connection idle timeout in milliseconds.
.max-connections=1 # Maximum number of pooled connections.
-active-session-per-connection=500 # Maximum number of active sessions per connection.
-on-exception=true # Reset the connection when a "JMSException" occurs.
.time-between-expiration-check=-1 # Time to sleep, in milliseconds, between runs of the idle connection eviction thread. When negative, no idle connection eviction thread runs.
-anonymous-producers=true # Use only one anonymous "MessageProducer" instance. Set it to false to create one "MessageProducer" every time one is required.
# ARTEMIS (ArtemisProperties)
-password= # Cluster password. Randomly generated on startup by default.
-directory= # Journal file directory. Not necessary if persistence is turned off.
=true # Enable embedded mode if the Artemis server APIs are available.
=false # Enable persistent store.
= # Comma-separated list of queues to create on startup.
-id= # Server id. By default, an auto-incremented counter is used.
= # Comma-separated list of topics to create on startup.
=localhost # Artemis broker host.
= # Artemis deployment mode, auto-detected by default.
.password= # Login password of the broker.
=61616 # Artemis broker port.
.user= # Login user of the broker.
# SPRING BATCH (BatchProperties)
-schema=embedded # Database schema initialization mode.
=true # Execute all Spring Batch jobs in the context on startup.
= # Comma-separated list of job names to execute on startup (For instance `job1,job2`). By default, all Jobs found in the context are executed.
.schema=classpath:org/springframework/batch/core/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
.table-prefix= # Table prefix for all the batch meta-data tables.
# SPRING INTEGRATION (IntegrationProperties)
-schema=embedded # Database schema initialization mode.
.schema=classpath:org/springframework/integration/jdbc/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
# JMS (JmsProperties)
-name= # Connection factory JNDI name. When set, takes precedence to others connection factory auto-configurations.
-mode= # Acknowledge mode of the container. By default, the listener is transacted with automatic acknowledgment.
-startup=true # Start the container automatically on startup.
= # Minimum number of concurrent consumers.
.max-concurrency= # Maximum number of concurrent consumers.
-sub-domain=false # Specify if the default destination type is topic.
.default-destination= # Default destination to use on send/receive operations that do not have a destination parameter.
-delay= # Delivery delay to use for send calls in milliseconds.
-mode= # Delivery mode. Enable QoS when set.
= # Priority of a message when sending. Enable QoS when set.
-enabled= # Enable explicit QoS when sending a message.
-timeout= # Timeout to use for receive calls in milliseconds.
.time-to-live= # Time-to-live of a message when sending in milliseconds. Enable QoS when set.
# APACHE KAFKA (KafkaProperties)
-id= # Id to pass to the server when making requests; used for server-side logging.
-fast=false # Fail fast if the broker is not available on startup.
.*= # Additional admin-specific properties used to configure the client.
.key-password= # Password of the private key in the key store file.
-location= # Location of the key store file.
-password= # Store password for the key store file.
-location= # Location of the trust store file.
-password= # Store password for the trust store file.
-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
-id= # Id to pass to the server when making requests; used for server-side logging.
-commit-interval= # Frequency in milliseconds that the consumer offsets are auto-committed to Kafka if '' true.
-offset-reset= # What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server.
-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
-id= # Id to pass to the server when making requests; used for server-side logging.
-auto-commit= # If true the consumer's offset will be periodically committed in the background.
.fetch-max-wait= # Maximum amount of time in milliseconds the server will block before answering the fetch request if there isn't sufficient data to immediately satisfy the requirement given by "".
.fetch-min-size= # Minimum amount of data the server should return for a fetch request in bytes.
.group-id= # Unique string that identifies the consumer group this consumer belongs to.
-interval= # Expected time in milliseconds between heartbeats to the consumer coordinator.
.key-deserializer= # Deserializer class for keys.
.max-poll-records= # Maximum number of records returned in a single call to poll().
.*= # Additional consumer-specific properties used to configure the client.
.key-password= # Password of the private key in the key store file.
-location= # Location of the key store file.
-password= # Store password for the key store file.
-location= # Location of the trust store file.
-password= # Store password for the trust store file.
-deserializer= # Deserializer class for values.
-flag=required # Control flag for login configuration.
= # Enable JAAS configuration.
-module=.Krb5LoginModule # Login module.
= # Additional JAAS options.
-count= # Number of records between offset commits when ackMode is "COUNT" or "COUNT_TIME".
-mode= # Listener AckMode; see the spring-kafka documentation.
-time= # Time in milliseconds between offset commits when ackMode is "TIME" or "COUNT_TIME".
= # Number of threads to run in the listener containers.
-timeout= # Timeout in milliseconds to use when polling the consumer.
=single # Listener type.
= # Number of acknowledgments the producer requires the leader to have received before considering a request complete.
-size= # Number of records to batch before sending.
-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
-memory= # Total bytes of memory the producer can use to buffer records waiting to be sent to the server.
-id= # Id to pass to the server when making requests; used for server-side logging.
-type= # Compression type for all data generated by the producer.
.key-serializer= # Serializer class for keys.
.*= # Additional producer-specific properties used to configure the client.
= # When greater than zero, enables retrying of failed sends.
.key-password= # Password of the private key in the key store file.
-location= # Location of the key store file.
-password= # Store password for the key store file.
-location= # Location of the trust store file.
-password= # Store password for the trust store file.
-serializer= # Serializer class for values.
.*= # Additional properties, common to producers and consumers, used to configure the client.
.key-password= # Password of the private key in the key store file.
-location= # Location of the key store file.
-password= # Store password for the key store file.
-location= # Location of the trust store file.
-password= # Store password for the trust store file.
.default-topic= # Default topic to which messages will be sent.
# RABBIT (RabbitProperties)
= # Comma-separated list of addresses to which the client should connect.
-timeout= # Number of milliseconds to wait to obtain a channel if the cache size has been reached.
.size= # Number of channels to retain in the cache.
.connection.mode=channel # Connection factory cache mode.
.connection.size= # Number of connections to cache.
.connection-timeout= # Connection timeout, in milliseconds; zero for infinite.
.dynamic=true # Create an AmqpAdmin bean.
=localhost # RabbitMQ host.
-mode= # Acknowledge mode of container.
-startup=true # Start the container automatically on startup.
-per-queue= # Number of consumers per queue.
.default-requeue-rejected= # Whether rejected deliveries are requeued by default; default true.
-event-interval= # How often idle container events should be published in milliseconds.
= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).
=false # Whether or not publishing retries are enabled.
-interval=1000 # Interval between the first and second attempt to publish or deliver a message.
.max-attempts=3 # Maximum number of attempts to publish or deliver a message.
.max-interval=10000 # Maximum interval between attempts.
=1 # A multiplier to apply to the previous retry interval.
=true # Whether or not retries are stateless or stateful.
-mode= # Acknowledge mode of container.
-startup=true # Start the container automatically on startup.
= # Minimum number of listener invoker threads.
.default-requeue-rejected= # Whether or not to requeue delivery failures.
-event-interval= # How often idle container events should be published in milliseconds.
.max-concurrency= # Maximum number of listener invoker.
= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).
=false # Whether or not publishing retries are enabled.
-interval=1000 # Interval between the first and second attempt to deliver a message.
.max-attempts=3 # Maximum number of attempts to deliver a message.
.max-interval=10000 # Maximum interval between attempts.
=1.0 # A multiplier to apply to the previous delivery retry interval.
=true # Whether or not retry is stateless or stateful.
.transaction-size= # Number of messages to be processed in a transaction; number of messages between acks. For best results it should be less than or equal to the prefetch count.
=simple # Listener container type.
.password= # Login to authenticate against the broker.
=5672 # RabbitMQ port.
-confirms=false # Enable publisher confirms.
-returns=false # Enable publisher returns.
-heartbeat= # Requested heartbeat timeout, in seconds; zero for none.
=false # Enable SSL support.
.key-store= # Path to the key store that holds the SSL certificate.
.key-store-password= # Password used to access the key store.
.key-store-type=PKCS12 # Key store type.
-store= # Trust store that holds SSL certificates.
-store-password= # Password used to access the trust store.
-store-type=JKS # Trust store type.
= # SSL algorithm to use. By default configure by the rabbit client library.
=false # Enable mandatory messages.
-timeout=0 # Timeout for `receive()` methods.
-timeout=5000 # Timeout for `sendAndReceive()` methods.
=false # Set to true to enable retries in the `RabbitTemplate`.
-interval=1000 # Interval between the first and second attempt to publish a message.
.max-attempts=3 # Maximum number of attempts to publish a message.
.max-interval=10000 # Maximum number of attempts to publish a message.
=1.0 # A multiplier to apply to the previous publishing retry interval.
= # Login user to authenticate to the broker.
-host= # Virtual host to use when connecting to the broker.
#
# ACTUATOR PROPERTIES
#
# AUDIT EVENTS ENDPOINT (AuditEventsEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the auditevents endpoint.
= # Expose the auditevents endpoint as a JMX MBean.
= # Expose the auditevents endpoint as a Web endpoint.
=auditevents # Path of the auditevents endpoint.
# BEANS ENDPOINT (BeansEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the beans endpoint.
= # Expose the beans endpoint as a JMX MBean.
= # Expose the beans endpoint as a Web endpoint.
=beans # Path of the beans endpoint.
# CONDITIONS REPORT ENDPOINT (ConditionsReportEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the conditions endpoint.
= # Expose the conditions endpoint as a JMX MBean.
= # Expose the conditions endpoint as a Web endpoint.
=conditions # Path of the conditions endpoint.
# CONFIGURATION PROPERTIES REPORT ENDPOINT (ConfigurationPropertiesReportEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the configprops endpoint.
= # Expose the configprops endpoint as a JMX MBean.
-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regular expressions.
= # Expose the configprops endpoint as a Web endpoint.
=configprops # Path of the configprops endpoint.
# ENDPOINT DEFAULT SETTINGS
endpoints.default.enabled=true # Enable all endpoints by default.
endpoints.default.=true # Enable all endpoints as JMX MBeans by default.
endpoints.default.=false # Enable all endpoints as Web endpoints by default.
# ENVIRONMENT ENDPOINT (EnvironmentEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the env endpoint.
= # Expose the env endpoint as a JMX MBean.
-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regular expressions.
= # Expose the env endpoint as a Web endpoint.
=env # Path of the env endpoint.
# FLYWAY ENDPOINT (FlywayEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the flyway endpoint.
= # Expose the flyway endpoint as a JMX MBean.
= # Expose the flyway endpoint as a Web endpoint.
=flyway # Path of the flyway endpoint.
# HEALTH ENDPOINT (HealthEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the health endpoint.
= # Expose the health endpoint as a JMX MBean.
= # Expose the health endpoint as a Web endpoint.
=health # Path of the health endpoint.
# HEAP DUMP ENDPOINT (HeapDumpWebEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the heapdump endpoint.
= # Expose the heapdump endpoint as a Web endpoint.
=heapdump # Path of the heapdump endpoint.
# INFO ENDPOINT (InfoEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
=true # Enable the info endpoint.
=true # Expose the info endpoint as a JMX MBean.
=true # Expose the info endpoint as a Web endpoint.
=info # Path of the info endpoint.
# LIQUIBASE ENDPOINT (LiquibaseEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the liquibase endpoint.
= # Expose the liquibase endpoint as a JMX MBean.
= # Expose the liquibase endpoint as a Web endpoint.
=liquibase # Path of the liquibase endpoint.
# LOG FILE ENDPOINT (LogFileWebEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the logfile endpoint.
-file= # External Logfile to be accessed. Can be used if the logfile is written by output redirect and not by the logging system itself.
= # Expose the logfile endpoint as a Web endpoint.
=logfile # Path of the logfile endpoint.
# LOGGERS ENDPOINT (LoggersEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the loggers endpoint.
= # Expose the loggers endpoint as a JMX MBean.
= # Expose the loggers endpoint as a Web endpoint.
=loggers # Path of the loggers endpoint.
# REQUEST MAPPING ENDPOINT (RequestMappingEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the mappings endpoint.
= # Expose the mappings endpoint as a JMX MBean.
= # Expose the mappings endpoint as a Web endpoint.
=mappings # Path of the mappings endpoint.
# METRICS ENDPOINT (MetricsEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the metrics endpoint.
= # Expose the metrics endpoint as a JMX MBean.
= # Expose the metrics endpoint as a Web endpoint.
=metrics # Path of the metrics endpoint.
# PROMETHEUS ENDPOINT (PrometheusScrapeEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the metrics endpoint.
= # Expose the metrics endpoint as a Web endpoint.
=prometheus # Path of the prometheus endpoint.
# SESSIONS ENDPOINT (SessionsEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the sessions endpoint.
= # Expose the sessions endpoint as a JMX MBean.
= # Expose the sessions endpoint as a Web endpoint.
=sessions # Path of the sessions endpoint.
# SHUTDOWN ENDPOINT (ShutdownEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
=false # Enable the shutdown endpoint.
=false # Expose the shutdown endpoint as a JMX MBean.
=false # Expose the shutdown endpoint as a Web endpoint.
=shutdown # Path of the shutdown endpoint.
# STATUS ENDPOINT (StatusEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
=true # Enable the status endpoint.
=true # Expose the status endpoint as a JMX MBean.
=true # Expose the status endpoint as a Web endpoint.
=status # Path of the status endpoint.
# THREAD DUMP ENDPOINT (ThreadDumpEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the threaddump endpoint.
= # Expose the threaddump endpoint as a JMX MBean.
= # Expose the threaddump endpoint as a Web endpoint.
=threaddump # Path of the threaddump endpoint.
# TRACE ENDPOINT (TraceEndpoint)
.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
= # Enable the trace endpoint.
= # Expose the trace endpoint as a JMX MBean.
= # Expose the trace endpoint as a Web endpoint.
=trace # Path of the trace endpoint.
# MANAGEMENT HTTP SERVER (ManagementServerProperties)
.add-application-context-header=false # Add the "X-Application-Context" HTTP header in each response. Requires a custom .
= # Network address that the management endpoints should bind to. Requires a custom .
-path= # Management endpoint context-path. For instance `/actuator`. Requires a custom
= # Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL.
= # Supported SSL ciphers. Requires a custom .
-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store. Requires a custom .
= # Enable SSL support. Requires a custom .
-protocols= # Enabled SSL protocols. Requires a custom .
.key-alias= # Alias that identifies the key in the key store. Requires a custom .
.key-password= # Password used to access the key in the key store. Requires a custom .
.key-store= # Path to the key store that holds the SSL certificate (typically a jks file). Requires a custom .
.key-store-password= # Password used to access the key store. Requires a custom .
.key-store-provider= # Provider for the key store. Requires a custom .
.key-store-type= # Type of the key store. Requires a custom .
=TLS # SSL protocol to use. Requires a custom .
-store= # Trust store that holds SSL certificates. Requires a custom .
-store-password= # Password used to access the trust store. Requires a custom .
-store-provider= # Provider for the trust store. Requires a custom .
-store-type= # Type of the trust store. Requires a custom .
# CLOUDFOUNDRY
=true # Enable extended Cloud Foundry actuator endpoints.
-ssl-validation=false # Skip SSL verification for Cloud Foundry actuator endpoint security calls.
# ENDPOINTS CORS CONFIGURATION (CorsEndpointProperties)
-credentials= # Set whether credentials are supported. When not set, credentials are not supported.
-headers= # Comma-separated list of headers to allow in a request. '*' allows all headers.
-methods= # Comma-separated list of methods to allow. '*' allows all methods. When not set, defaults to GET.
-origins= # Comma-separated list of origins to allow. '*' allows all origins. When not set, CORS support is disabled.
-headers= # Comma-separated list of headers to include in a response.
.max-age=1800 # How long, in seconds, the response from a pre-flight request can be cached by clients.
# ENDPOINTS WEB CONFIGURATION (WebEndpointProperties)
-path=/application # Base path for Web endpoints. Relative to -path or -path if is configured.
# ENDPOINTS JMX CONFIGURATION (JmxEndpointExporterProperties)
= # Endpoints JMX domain name. Fallback to '-domain' if set.
.static-names=false # Additional static properties to append to all ObjectNames of MBeans representing Endpoints.
.unique-names=false # Ensure that ObjectNames are modified in case of conflict.
# HEALTH INDICATORS
=true # Enable database health check.
=true # Enable cassandra health check.
=true # Enable couchbase health check.
=true # Enable default health indicators.
=true # Enable disk space health check.
= # Path used to compute the available disk space.
=0 # Minimum disk space that should be available, in bytes.
=true # Enable elasticsearch health check.
= # Comma-separated index names.
-timeout=100 # The time, in milliseconds, to wait for a response from the cluster.
=true # Enable JMS health check.
=true # Enable LDAP health check.
=true # Enable Mail health check.
=true # Enable MongoDB health check.
.=true # Enable Neo4j health check.
=true # Enable RabbitMQ health check.
=true # Enable Redis health check.
=true # Enable Solr health check.
-mapping= # Mapping of health statuses to HTTP status codes. By default, registered health statuses map to sensible defaults (. UP maps to 200).
.order=DOWN, OUT_OF_SERVICE, UP, UNKNOWN # Comma-separated list of health statuses in order of severity.
# INFO CONTRIBUTORS (InfoContributorProperties)
=true # Enable build info.
=true # Enable default info contributors.
=true # Enable environment info.
=true # Enable git info.
=simple # Mode to use to expose git information.
# JOLOKIA (JolokiaProperties)
.*= # Jolokia settings. See the Jolokia manual for details.
=false # Enable Jolokia.
=/jolokia # Path at which Jolokia will be available.
# TRACING (TraceEndpointProperties)
=true # Enable the trace servlet filter.
=request-headers,response-headers,cookies,errors # Items to be included in the trace.
# METRICS
-global-registry=true # Whether or not auto-configured MeterRegistry implementations should be bound to the global static registry on Metrics.
-size= # Number of measurements per request to use for the backend. If more measurements are found, then multiple requests will be made.
-refresh-frequency= # Frequency for refreshing config settings from the LWC service.
-time-to-live= # Time to live for subscriptions from the LWC service.
-uri= # URI for the Atlas LWC endpoint to retrieve current subscriptions.
.connect-timeout= # Connection timeout for requests to the backend.
= # Enable publishing to the backend.
-uri= # URI for the Atlas LWC endpoint to evaluate the data for a subscription.
-enabled= # Enable streaming to Atlas LWC.
-time-to-live= # Time to love for meters that do not have any activity. After this period the meter will be considered expired and will not get reported.
-threads= # Number of threads to use with the metrics publishing scheduler.
.read-timeout= # Read timeout for requests to the backend.
=1 # Step size (. reporting frequency) to use.
= # URI of the Atlas server.
-key= # Datadog API key.
-size= # Number of measurements per request to use for the backend. If more measurements are found, then multiple requests will be made.
.connect-timeout= # Connection timeout for requests to the backend.
= # Enable publishing to the backend.
-threads= # Number of threads to use with the metrics publishing scheduler.
.read-timeout= # Read timeout for requests to the backend.
=1 # Step size (. reporting frequency) to use.
= # 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.
-mode= # UDP addressing mode, either unicast or multicast.
-units= # Base time unit used to report durations.
= # Enable publishing to Ganglia.
= # Host of the Ganglia server to receive exported metrics.
= # Port of the Ganglia server to receive exported metrics.
-version= # Ganglia protocol version. Must be either 3.1 or 3.0.
-units= # Base time unit used to report rates.
= # Step size (. reporting frequency) to use.
.time-to-live= # Time to live for metrics on Ganglia.
-units= # Base time unit used to report durations.
= # Enable publishing to Graphite.
= # Host of the Graphite server to receive exported metrics.
= # Port of the Graphite server to receive exported metrics.
= # Protocol to use while shipping data to Graphite.
-units= # Base time unit used to report rates.
= # Step size (. reporting frequency) to use.
-size= # Number of measurements per request to use for the backend. If more measurements are found, then multiple requests will be made.
= # Enable GZIP compression of metrics batches published to Influx.
.connect-timeout= # Connection timeout for requests to the backend.
= # Write consistency for each point.
= # Tag that will be mapped to "host" when shipping metrics to Influx. Can be omitted of host should be omitted on publishing.
= # Enable publishing to the backend.
-threads= # Number of threads to use with the metrics publishing scheduler.
.password= # Login password of the Influx server.
.read-timeout= # Read timeout for requests to the backend.
-policy= # Retention policy to use (Influx writes to the DEFAULT retention policy if one is not specified).
=1 # Step size (. reporting frequency) to use.
= # URI of the Influx server.
.user-name= # Login user of the Influx server.
= # Enable publishing descriptions as part of the scrape payload to Prometheus. Turn this off to minimize the amount of data sent on each scrape.
= # Enable publishing to Prometheus.
= # Step size (. reporting frequency) to use.
=false # Enable publishing to the backend.
=10 # Step size (. reporting frequency) to use.
= # Export metrics to StatsD.
= # StatsD line protocol to use.
=localhost # Host of the StatsD server to receive exported metrics.
.max-packet-length=1400 # Total length of a single payload should be kept within your network's MTU.
-frequency=10 # How often gauges will be polled. When a gauge is polled, its value is recalculated and if the value has changed, it is sent to the StatsD server.
=8125 # Port of the StatsD server to receive exported metrics.
-size= # Maximum size of the queue of items waiting to be sent to the StatsD server.
-metric-name= # Name of the metric for data source usage.
-datasource=true # Instrument all available data sources.
-request-percentiles=false # Whether or not instrumented requests record percentiles histogram buckets by default.
-metric-name= # Name of the metric for sent requests.
-time-requests=true # Whether or not requests handled by Spring MVC or WebFlux should be automatically timed.
-request-percentiles=false # Whether or not instrumented requests record percentiles histogram buckets by default.
-metric-name= # Name of the metric for received requests.
#
# DEVTOOLS PROPERTIES
#
# DEVTOOLS (DevToolsProperties)
=true # Enable a compatible server.
=35729 # Server port.
-exclude= # Additional patterns that should be excluded from triggering a full restart.
-paths= # Additional paths to watch for changes.
=true # Enable automatic restart.
=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*,**/*, # Patterns that should be excluded from triggering a full restart.
-interval=1000 # Amount of time (in milliseconds) to wait between polling for classpath changes.
-period=400 # Amount of quiet time (in milliseconds) required without any classpath changes before a restart is triggered.
.trigger-file= # Name of a specific file that when changed will trigger the restart check. If not specified any classpath file change will trigger the restart.
# REMOTE DEVTOOLS (RemoteDevToolsProperties)
-path=/.~~spring-boot!~ # Context path used to handle the remote connection.
= # The host of the proxy to use to connect to the remote application.
= # The port of the proxy to use to connect to the remote application.
=true # Enable remote restart.
= # A shared secret required to establish a connection (required to enable remote support).
-header-name=X-AUTH-TOKEN # HTTP header used to transfer the shared secret.
#
# TESTING PROPERTIES
#
.database.replace=any # Type of existing DataSource to replace.
=default # MVC Print option.