springboot配置文件中的配置项
# ===================================================================
# 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 ``
.*= # Log levels severity mapping. For instance `=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.
= # Appender pattern for log level (default %5p). 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=false # Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false).
# IDENTITY (ContextIdApplicationContextInitializer)
= # Application index.
= # 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
=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 spec to use to create caches. Check CacheBuilderSpec for more details on the spec format.
= # The location of the configuration file to use to initialize Hazelcast.
= # 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.
= # Cache type, auto-detected according to the environment by default.
# SPRING CONFIG - using environment property only (ConfigFileApplicationListener)
= # Config file locations.
=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
-domain= # JMX domain name.
=true # Expose management beans to the JMX domain.
=mbeanServer # MBeanServer bean name.
# Email (MailProperties)
-encoding=UTF-8 # Default MimeMessage encoding.
= # SMTP server host. For instance ``
-name= # Session JNDI name. When set, takes precedence to others mail settings.
= # 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.
-environment= # Run the application in a web environment (auto-detected by default).
# 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.
# 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 of active profiles.
= # Unconditionally activate the specified comma separated profiles.
# SENDGRID (SendGridAutoConfiguration)
-key= # SendGrid api key (alternative to username/password)
= # SendGrid account username
= # SendGrid account password
= # 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= # Comma-separated list of MIME types that should be compressed. For instance `text/html,text/css,application/json`
-response-size= # Minimum response size that is required for compression to be performed. For instance 2048
-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.
-parameters.*= # Servlet context init parameters. For instance `=alpha`
-path= # Context path of the application.
-name=application # Display name of the application.
-http-header-size=0 # Maximum size in bytes of the HTTP message header.
-http-post-size=0 # Maximum size in bytes of the HTTP post content.
-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.
= # Number of acceptor threads to use.
= # Number of selector threads to use.
-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
=8080 # Server HTTP port.
-header= # Value to use for the Server response header (no header is sent if empty)
-path=/ # Path of the main dispatcher servlet.
-forward-headers= # If X-Forwarded-* headers should be applied to the HttpRequest.
= # Comment for the session cookie.
= # Domain for the session cookie.
-only= # "HttpOnly" flag for the session cookie.
-age= # Maximum age of the session cookie in seconds.
= # 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.
-alias= # Alias that identifies the key in the key store.
-password= # Password used to access the key in the key store.
-store= # Path to the key store that holds the SSL certificate (typically a jks file).
-store-password= # Password used to access the key store.
-store-provider= # Provider for the key store.
-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.
=logs # Directory in which log files are created. Can be relative to the tomcat base dir or absolute.
=false # Enable access log.
=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.
=.log # Log file name suffix.
-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.
-threads=0 # Maximum amount of worker threads.
-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`
-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.
=log # Log file name suffix.
-size= # Size of each buffer in bytes.
-per-region= # Number of buffer per region.
-buffers= # Allocate buffers outside the Java heap.
-threads= # Number of I/O threads to create for the worker.
-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.
-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.
= # Suffix that gets appended to view names when building a URL.
-loader-path=classpath:/templates/ # Comma-separated list of template paths.
-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.
-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.
-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=jackson # Preferred JSON mapper to use for HTTP message conversion. Set to "gson" to force the use of Gson when both it and Jackson are on the classpath.
# 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 the encoding to the configured charset on HTTP requests and responses.
-request= # Force the encoding to the configured charset on HTTP requests. Defaults to true when "force" has not been specified.
-response= # Force the encoding to the configured charset on HTTP responses.
= # Locale to Encoding mapping.
# MULTIPART (MultipartProperties)
=true # Enable support of multi-part uploads.
-size-threshold=0 # Threshold after which files will be written to disk. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
= # Intermediate location of uploaded files.
-file-size=1Mb # Max file size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
-request-size=10Mb # Max request size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
-lazily=false # Whether to resolve the multipart request lazily at the time of file or parameter access.
# JACKSON (JacksonProperties)
-format= # Date format string or a fully-qualified date format class name. For instance `yyyy-MM-dd HH:mm:ss`.
-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.
-inclusion= # Controls the inclusion of properties during serialization. Configured with one of the values in Jackson's enumeration.
-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.
=0 # Jersey filter chain order.
.*= # Init parameters to pass to Jersey via the servlet or filter.
-on-startup=-1 # Load on startup priority of the Jersey servlet.
=servlet # Jersey integration type.
# SPRING MOBILE DEVICE VIEWS (DeviceDelegatingViewResolverAutoConfiguration)
-fallback=false # Enable support for fallback resolution.
=false # Enable device view resolver.
-prefix=mobile/ # Prefix that gets prepended to view names for mobile devices.
-suffix= # Suffix that gets appended to view names for mobile devices.
-prefix= # Prefix that gets prepended to view names for normal devices.
-suffix= # Suffix that gets appended to view names for normal devices.
-prefix=tablet/ # Prefix that gets prepended to view names for tablet devices.
-suffix= # Suffix that gets appended to view names for tablet devices.
# SPRING MOBILE SITE PREFERENCE (SitePreferenceAutoConfiguration)
=true # Enable SitePreferenceHandler.
# 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.
-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.
=.html # Suffix to apply to template names.
-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.
-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.
-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`.
-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.
-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.
= # Spring MVC view prefix.
= # Spring MVC view suffix.
# SPRING RESOURCES HANDLING (ResourceProperties)
-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.
-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/ # Locations of static resources.
# SPRING SESSION (SessionProperties)
-name=spring:session:sessions # Name of the map used to store sessions.
= # Create the required session tables on startup if necessary. Enabled automatically if the default table name is set or a custom schema is configured.
=classpath:org/springframework/session/jdbc/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
-name=SPRING_SESSION # Name of database table used to store sessions.
-name=sessions # Collection name used to store sessions.
-mode= # Flush mode for the Redis sessions.
= # Namespace for keys used to store sessions.
-type= # Session store type.
# 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.
-template=true # Check that the template exists before rendering it.
-template-location=true # Check that the templates location exists.
-type=text/html # Content-Type value.
=true # Enable MVC Thymeleaf view resolution.
=UTF-8 # Template 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.
=.html # Suffix that gets appended to view names when building a URL.
-resolver-order= # Order of the template resolver in the chain.
-names= # Comma-separated list of view names that can be resolved.
# VELOCITY TEMPLATES (VelocityAutoConfiguration)
-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.
-template-location=true # Check that the templates location exists.
-type=text/html # Content-Type value.
-tool-attribute= # Name of the DateTool helper object to expose in the Velocity context of the view.
=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".
-tool-attribute= # Name of the NumberTool helper object to expose in the Velocity context of the view.
-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.
.*= # Additional velocity properties.
-context-attribute= # Name of the RequestContext attribute for all views.
-loader-path=classpath:/templates/ # Template path.
=.vm # Suffix that gets appended to view names when building a URL.
-config-location= # Velocity Toolbox config location. For instance `/WEB-INF/`
-names= # White list of view names that can be resolved.
# SPRING WEB SERVICES (WebServicesProperties)
=/services # Path that serves as the base URI for the services.
= # Servlet init parameters to pass to Spring Web Services.
-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.
# ----------------------------------------
# SECURITY PROPERTIES
# ----------------------------------------
# SECURITY (SecurityProperties)
-mode=role # Security authorize mode to apply.
=true # Enable basic authentication.
=/** # Comma-separated list of paths to secure.
=Spring # HTTP basic realm name.
-csrf=false # Enable Cross Site Request Forgery support.
-order=0 # Security filter chain order.
-dispatcher-types=ASYNC, FORWARD, INCLUDE, REQUEST # Security filter chain dispatcher types.
=true # Enable cache control HTTP headers.
-type=true # Enable "X-Content-Type-Options" header.
=true # Enable "X-Frame-Options" header.
= # HTTP Strict Transport Security (HSTS) mode (none, domain, all).
=true # Enable cross site scripting (XSS) protection.
= # Comma-separated list of paths to exclude from the default secured paths.
-ssl=false # Enable secure channel for all requests.
=stateless # Session creation policy (always, never, if_required, stateless).
=user # Default user name.
= # Password for the default user name. A random password is logged on startup by default.
=USER # Granted roles for the default user name.
# SECURITY OAUTH2 CLIENT (OAuth2ClientProperties)
security.-id= # OAuth2 client id.
security.-secret= # OAuth2 client secret. A random secret is generated by default
# SECURITY OAUTH2 RESOURCES (ResourceServerProperties)
security.= # Identifier of the resource.
security.-uri= # The URI of the JWT token. Can be set if the value is not available and the key is public.
security.-value= # The verification key of the JWT token. Can either be a symmetric secret or PEM-encoded RSA public key.
security.-token-info=true # Use the token info, can be set to false to use the user info.
security.-id=resource #
security.-info-uri= # URI of the token decoding endpoint.
security.-type= # The token type to send when using the userInfoUri.
security.-info-uri= # URI of the user endpoint.
# SECURITY OAUTH2 SSO (OAuth2SsoProperties)
security.-order= # Filter order to apply if not providing an explicit WebSecurityConfigurerAdapter
security.-path=/login # Path to the login page, . the one that triggers the redirect to the OAuth2 Authorization Server
# ----------------------------------------
# DATA PROPERTIES
# ----------------------------------------
# FLYWAY (FlywayProperties)
-description= #
-version=1 # version to start migration
-on-migrate= #
-location=false # Check that migration scripts location exists.
-on-validation-error= #
=true # Enable flyway.
= #
-failed-future-migration= #
-sqls= # SQL statements to execute to initialize a connection immediately after obtaining it.
=classpath:db/migration # locations of migrations scripts
-of-order= #
= # JDBC password if you want Flyway to create its own DataSource
-prefix= #
-replacement= #
-suffix= #
.*= #
= # schemas to update
-migration-prefix=V #
-migration-separator= #
-migration-suffix=.sql #
= #
= # JDBC url of the database to migrate. If not set, the primary configured data source is used.
= # Login user of the database to migrate.
-on-migrate= #
# LIQUIBASE (LiquibaseProperties)
-log=classpath:/db/changelog/ # Change log configuration path.
-change-log-location=true # Check the change log location exists.
= # Comma-separated list of runtime contexts to use.
-schema= # Default database schema.
-first=false # Drop the database schema first.
=true # Enable liquibase support.
= # Comma-separated list of runtime labels to use.
.*= # Change log parameters.
= # Login password of the database to migrate.
-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.
= # Login user of the database to migrate.
# COUCHBASE (CouchbaseProperties)
-hosts= # Couchbase nodes (host or IP address) to bootstrap from.
=default # Name of the bucket to connect to.
= # Password of the bucket.
-value=1 # Number of sockets per node against the Key/value service.
=1 # Number of sockets per node against the Query (N1QL) service.
=1 # Number of sockets per node against the view service.
= # Enable SSL support. Enabled automatically if a "keyStore" is provided unless specified otherwise.
-store= # Path to the JVM key store that holds the certificates.
-store-password= # Password used to access the key store.
=5000 # Bucket connections timeout in milliseconds.
-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.
=7500 # Regular and geospatial view operations timeout in milliseconds.
# DAO (PersistenceExceptionTranslationAutoConfiguration)
=true # Enable the PersistenceExceptionTranslationPostProcessor.
# CASSANDRA (CassandraProperties)
-name= # Name of the Cassandra cluster.
= # Compression supported by the Cassandra binary protocol.
-timeout-millis= # Socket option: connection time out.
-level= # Queries consistency level.
-points=localhost # Comma-separated list of cluster node addresses.
-size= # Queries default fetch size.
-name= # Keyspace name to use.
-balancing-policy= # Class name of the load balancing policy.
= # Port of the Cassandra server.
= # Login password of the server.
-timeout-millis= # Socket option: read time out.
-policy= # Reconnection policy class.
-policy= # Class name of the retry policy.
-consistency-level= # Queries serial consistency level.
-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 repositories.
# ELASTICSEARCH (ElasticsearchProperties)
-name=elasticsearch # Elasticsearch cluster name.
-nodes= # Comma-separated list of cluster node addresses. If not specified, starts a client node.
.*= # Additional properties used to configure the client.
=true # Enable Elasticsearch repositories.
# MONGODB (MongoProperties)
-database= # Authentication database name.
=test # Database name.
-naming-strategy= # Fully qualified name of the FieldNamingStrategy to use.
-fs-database= # GridFS database name.
=localhost # Mongo server host.
= # Login password of the mongo server.
=27017 # Mongo server port.
=true # Enable Mongo repositories.
=mongodb://localhost/test # Mongo database URI. When set, host and port are ignored.
= # Login user of the mongo server.
# DATA REDIS
=true # Enable Redis repositories.
# NEO4J (Neo4jProperties)
.= # Compiler to use.
.=true # Enable embedded mode if the embedded driver is available.
.= # Login password of the server.
.=true # Enable Neo4j repositories.
.=singleton # Scope (lifetime) of the session.
.= # 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.
-page-size= # Default size of pages.
-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.
-page-size= # Maximum size of pages.
-param-name= # Name of the URL query string parameter that indicates what page to return.
-body-on-create= # Return a response body after creating an entity.
-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.
# DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
-on-error=false # Do not stop if an error occurs while initializing the database.
= # Data (DML) script resource reference.
-username= # User of the database to execute DML scripts (if different).
-password= # Password of the database to execute DML scripts (if different).
.*= # Commons DBCP specific settings
.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
=true # Populate the database using ''.
-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.
=testdb # Name of the datasource.
= # Login password of the database.
=all # Platform to use in the schema resource (schema-${platform}.sql).
= # Schema (DDL) script resource reference.
-username= # User of the database to execute DDL scripts (if different).
-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.
=
# JEST (Elasticsearch HTTP client) (JestProperties)
-timeout=3000 # Connection timeout in milliseconds.
= # Login password.
= # Proxy host the HTTP client should use.
= # Proxy port the HTTP client should use.
-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.
# JOOQ (JooqAutoConfiguration)
-dialect= # SQLDialect JOOQ used when communicating with the configured datasource. For instance `POSTGRES`
# JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)
=true # Enable JPA repositories.
= # Target database to operate on, auto-detected by default. Can be alternatively set using the "databasePlatform" property.
-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, "none" otherwise.
-strategy= # Hibernate 5 implicit naming strategy fully qualified name.
-strategy= # Hibernate 5 physical naming strategy fully qualified name.
= # Hibernate 4 naming strategy fully qualified name. Not supported with Hibernate 5.
-new-id-generator-mappings= # Use Hibernate's newer IdentifierGenerator for AUTO, TABLE and SEQUENCE.
-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.
-manager-id= # Transaction manager unique identifier.
# ATOMIKOS (AtomikosProperties)
-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.
-session-transacted-flag=true # Whether or not to ignore the transacted flag when creating session.
-transaction-mode=false # Whether or not local transactions are desired.
-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.
-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.
-pool-size=1 # The maximum size of the pool.
-pool-size=1 # The minimum size of the pool.
-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.
-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.
-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.
-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.
-pool-size=1 # The maximum size of the pool.
-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.
-resource-name=dataSource # The unique name used to identify the resource during recovery.
-interval=500 # Interval between checkpoints.
-file-count=1 # Number of debug logs files that can be created.
-file-limit=-1 # How many bytes can be stored at most in debug logs files.
-file-name= # Debug logs file name.
-log-level= # Console log level.
-jta-timeout=10000 # Default timeout for JTA transactions.
-logging=true # Enable disk logging.
-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.
-actives=50 # Maximum number of active transactions.
-timeout=300000 # Maximum timeout (in milliseconds) that can be allowed for transactions.
-dir= # Directory in which to store the debug log files.
-jta-transactions=true # Specify if sub-transactions should be joined when possible.
= # Transaction manager implementation that should be started.
-two-phase-commit=true # Use different (and concurrent) threads for two-phase commit on the participating resources.
-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.
-recovery-failures=false # Whether or not recovery failures should be ignored.
-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
-pool-size=10 # The maximum size of the pool. 0 denotes no limit.
-pool-size=0 # The minimum size of the pool.
= # 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).
-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.
= # 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.
-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 () is called when acquiring a connection from the pool.
-recovery-failures=false # Whether or not recovery failures should be ignored.
-level= # The default isolation level for connections.
-auto-commit= # The default auto-commit mode for local transactions.
-timeout= # Timeout, in seconds, for establishing a database connection.
-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
-pool-size=10 # The maximum size of the pool. 0 denotes no limit.
-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).
-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.
-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.
-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.
-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.
-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)
-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.
-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.
= # Directory used for data storage.
= # Maximum size of the oplog in megabytes.
= # Name of the replica set.
=2.6.10 # Version of Mongo to use.
# REDIS (RedisProperties)
-redirects= # Maximum number of redirects to follow when executing commands across the cluster.
= # Comma-separated list of "host:port" pairs to bootstrap from.
=0 # Database index used by the connection factory.
=localhost # Redis server host.
= # Login password of the redis server.
-active=8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
-idle=8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
-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.
-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.
=6379 # Redis server port.
= # Name of Redis server.
= # Comma-separated list of host:port pairs.
=0 # Connection timeout in milliseconds.
# ----------------------------------------
# INTEGRATION PROPERTIES
# ----------------------------------------
# ACTIVEMQ (ActiveMQProperties)
-url= # URL of the ActiveMQ broker. Auto-generated by default. For instance `tcp://localhost:61616`
-memory=true # Specify if the default broker URL should be in memory. Ignored if an explicit broker has been specified.
= # Login password of the broker.
= # Login user of the broker.
-all=false # Trust all packages.
= # Comma-separated list of specific packages to trust (when not trusting all packages).
.*= # See PooledConnectionFactory.
=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.
-connections=1 # Maximum number of pooled connections.
# 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.
= # Login password of the broker.
=61616 # Artemis broker port.
= # Login user of the broker.
# SPRING BATCH (BatchProperties)
= # Create the required batch tables on startup if necessary. Enabled automatically if no custom table prefix is set or if a custom schema is configured.
=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.
=classpath:org/springframework/batch/core/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
-prefix= # Table prefix for all the batch meta-data tables.
# HORNETQ (HornetQProperties)
-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 HornetQ 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 # HornetQ broker host.
= # HornetQ deployment mode, auto-detected by default.
= # Login password of the broker.
=5445 # HornetQ broker port.
= # Login user of the broker.
# 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.
-concurrency= # Maximum number of concurrent consumers.
-sub-domain=false # Specify if the default destination type is topic.
# 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.
= # Number of channels to retain in the cache.
=CHANNEL # Connection factory cache mode.
= # Number of connections to cache.
-timeout= # Connection timeout, in milliseconds; zero for infinite.
=true # Create an AmqpAdmin bean.
=localhost # RabbitMQ host.
-mode= # Acknowledge mode of container.
-startup=true # Start the container automatically on startup.
= # Minimum number of consumers.
-requeue-rejected= # Whether or not to requeue delivery failures; default `true`.
-concurrency= # Maximum number of consumers.
= # 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.
-attempts=3 # Maximum number of attempts to deliver a message.
-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.
-size= # Number of messages to be processed in a transaction. For best results it should be less than or equal to the prefetch count.
= # 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.
-store= # Path to the key store that holds the SSL certificate.
-store-password= # Password used to access the key store.
-store= # Trust store that holds SSL certificates.
-store-password= # Password used to access the trust store.
= # 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.
-attempts=3 # Maximum number of attempts to publish a message.
-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
# ----------------------------------------
# ENDPOINTS (AbstractEndpoint subclasses)
=true # Enable endpoints.
= # Default endpoint sensitive setting.
=true # Enable the endpoint.
= # Endpoint URL path.
=false # Enable security on the endpoint.
= # Enable the endpoint.
= # Endpoint identifier.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
= # Enable the endpoint.
= # Endpoint identifier.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
= # Enable the endpoint.
= # Endpoint identifier.
-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 regex expressions.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
=false # Enable the curie generation.
=true # Enable actuator docs endpoint.
=/docs #
=false #
= # Enable the endpoint.
= # Endpoint identifier.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
= # Enable the endpoint.
= # Endpoint identifier.
-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 regex expressions.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
= # Enable the endpoint.
= # Endpoint identifier.
= # Mark if the endpoint exposes sensitive information.
= # Enable the endpoint.
= # Endpoint identifier.
.*= # Mapping of health statuses to HttpStatus codes. By default, registered health statuses map to sensible defaults (. UP maps to 200).
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
-to-live=1000 # Time to live for cached result, in milliseconds.
= # Enable the endpoint.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
=false # Enable hypermedia support for endpoints.
= # Enable the endpoint.
= # Endpoint identifier.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
=true # Enable Jolokia endpoint.
=/jolokia # Endpoint URL path.
=true # Enable security on the endpoint.
= # Enable the endpoint.
= # Endpoint identifier.
= # Mark if the endpoint exposes sensitive information.
=true # Enable the endpoint.
-file= # External Logfile to be accessed.
=/logfile # Endpoint URL path.
=true # Enable security on the endpoint.
= # Enable the endpoint.
= # Endpoint identifier.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
= # Enable the endpoint.
=true # Enable the metrics servlet filter.
-submissions=merged # Http filter gauge submissions (merged, per-http-method)
-submissions=merged # Http filter counter submissions (merged, per-http-method)
= # Endpoint identifier.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
= # Enable the endpoint.
= # Endpoint identifier.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
= # Enable the endpoint.
= # Endpoint identifier.
= # Endpoint path.
= # Mark if the endpoint exposes sensitive information.
# ENDPOINTS CORS CONFIGURATION (EndpointCorsProperties)
-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=GET # Comma-separated list of methods to allow. '*' allows all methods.
-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.
-age=1800 # How long, in seconds, the response from a pre-flight request can be cached by clients.
# JMX ENDPOINT (EndpointMBeanExportProperties)
= # JMX domain name. Initialized with the value of '-domain' if set.
=true # Enable JMX export of all endpoints.
-names= # Additional static properties to append to all ObjectNames of MBeans representing Endpoints.
-names=false # Ensure that ObjectNames are modified in case of conflict.
# JOLOKIA (JolokiaProperties)
.*= # See Jolokia manual
# MANAGEMENT HTTP SERVER (ManagementServerProperties)
-application-context-header=true # Add the "X-Application-Context" HTTP header in each response.
= # Network address that the management endpoints should bind to.
-path= # Management endpoint context-path. For instance `/actuator`
= # Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL.
=true # Enable security.
=ADMIN # Comma-separated list of roles that can access the management endpoint.
=stateless # Session creating policy to use (always, never, if_required, stateless).
= # 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 .
-alias= # Alias that identifies the key in the key store. Requires a custom .
-password= # Password used to access the key in the key store. Requires a custom .
-store= # Path to the key store that holds the SSL certificate (typically a jks file). Requires a custom .
-store-password= # Password used to access the key store. Requires a custom .
-store-provider= # Provider for the key store. Requires a custom .
-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 .
# HEALTH INDICATORS (previously health.*)
=true # Enable database 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 Mail health check.
=true # Enable MongoDB health check.
=true # Enable RabbitMQ health check.
=true # Enable Redis health check.
=true # Enable Solr health check.
=DOWN, OUT_OF_SERVICE, UNKNOWN, UP # 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.
# REMOTE SHELL (ShellProperties)
=simple # Authentication type. Auto-detected according to the environment.
=my-domain # JAAS domain.
= # Path to the authentication key. This should point to a valid ".pem" file.
=user # Login user.
= # Login password.
=ADMIN # Comma-separated list of required roles to login to the CRaSH console.
-path-patterns=classpath*:/commands/**,classpath*:/crash/commands/** # Patterns to use to look for commands.
-refresh-interval=-1 # Scan for changes and update the command if necessary (in seconds).
-path-patterns=classpath*:/crash/* # Patterns to use to look for configurations.
-commands=jpa*,jdbc*,jndi* # Comma-separated list of commands to disable.
-plugins= # Comma-separated list of plugins to disable. Certain plugins are disabled by default based on the environment.
-timeout = # Number of milliseconds after user will be prompted to login again.
=true # Enable CRaSH SSH support.
-timeout = # Number of milliseconds after which unused connections are closed.
-path= # Path to the SSH server key.
=2000 # SSH port.
=false # Enable CRaSH telnet support. Enabled by default if the TelnetPlugin is available.
=5000 # Telnet port.
# TRACING (TraceProperties)
=request-headers,response-headers,cookies,errors # Items to be included in the trace.
# METRICS EXPORT (MetricExportProperties)
-pattern= # Pattern that tells the aggregator what to do with the keys from the source repository.
= # Prefix for global repository if active.
-millis=5000 # Delay in milliseconds between export ticks. Metrics are exported to external sources on a schedule with this delay.
=true # Flag to enable metric export (assuming a MetricWriter is available).
= # List of patterns for metric names to exclude. Applied after the includes.
= # List of patterns for metric names to include.
= # Key for redis repository export (if active).
= # Prefix for redis repository if active.
-latest= # Flag to switch off any available optimizations based on not exporting unchanged metric values.
= # Host of a statsd server to receive exported metrics.
=8125 # Port of a statsd server to receive exported metrics.
= # Prefix for statsd exported metrics.
.*= # Specific trigger properties per MetricWriter bean name.
# ----------------------------------------
# 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.
-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.
=true # Enable remote debug support.
-port=8000 # Local remote debug server port.
= # 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.