Spring Boot屬性文件配置文檔(所有)


This sample file is meant as a guide only. Do not copy/paste the entire content into your application; rather pick only the properties that you need.javascript

# ===================================================================
# COMMON SPRING BOOT PROPERTIES
#
# This sample file is provided as a guideline. Do NOT copy it in its
# entirety to your own application. ^^^
# ===================================================================css


# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------html

# BANNER
banner.charset=UTF-8 # Banner file encoding.
banner.location=classpath:banner.txt # Banner file location.
banner.image.location=classpath:banner.gif # Banner image file location (jpg/png can also be used).
banner.image.width= # Width of the banner image in chars (default 76)
banner.image.height= # Height of the banner image in chars (default based on image height)
banner.image.margin= # Left hand image margin in chars (default 2)
banner.image.invert= # If images should be inverted for dark terminal themes (default false)java

# LOGGING
logging.config= # Location of the logging configuration file. For instance `classpath:logback.xml` for Logback
logging.exception-conversion-word=%wEx # Conversion word used when logging exceptions.
logging.file= # Log file name. For instance `myapp.log`
logging.level.*= # Log levels severity mapping. For instance `logging.level.org.springframework=DEBUG`
logging.path= # Location of the log file. For instance `/var/log`
logging.pattern.console= # Appender pattern for output to the console. Only supported with the default logback setup.
logging.pattern.file= # Appender pattern for output to the file. Only supported with the default logback setup.
logging.pattern.level= # Appender pattern for log level (default %5p). Only supported with the default logback setup.
logging.register-shutdown-hook=false # Register a shutdown hook for the logging system when it is initialized.node

# AOP
spring.aop.auto=true # Add @EnableAspectJAutoProxy.
spring.aop.proxy-target-class= # Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false). Defaults to "true" when using Spring Transaction Management, otherwise "false".ios

# IDENTITY (ContextIdApplicationContextInitializer)
spring.application.index= # Application index.
spring.application.name= # Application name.git

# ADMIN (SpringApplicationAdminJmxAutoConfiguration)
spring.application.admin.enabled=false # Enable admin features for the application.
spring.application.admin.jmx-name=org.springframework.boot:type=Admin,name=SpringApplication # JMX name of the application admin MBean.web

# AUTO-CONFIGURATION
spring.autoconfigure.exclude= # Auto-configuration classes to exclude.正則表達式

# SPRING CORE
spring.beaninfo.ignore=true # Skip search of BeanInfo classes.redis

# SPRING CACHE (CacheProperties)
spring.cache.cache-names= # Comma-separated list of cache names to create if supported by the underlying cache manager.
spring.cache.caffeine.spec= # The spec to use to create caches. Check CaffeineSpec for more details on the spec format.
spring.cache.couchbase.expiration=0 # Entry expiration in milliseconds. By default the entries never expire.
spring.cache.ehcache.config= # The location of the configuration file to use to initialize EhCache.
spring.cache.guava.spec= # The spec to use to create caches. Check CacheBuilderSpec for more details on the spec format.
spring.cache.infinispan.config= # The location of the configuration file to use to initialize Infinispan.
spring.cache.jcache.config= # The location of the configuration file to use to initialize the cache manager.
spring.cache.jcache.provider= # 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.
spring.cache.type= # Cache type, auto-detected according to the environment by default.

# SPRING CONFIG - using environment property only (ConfigFileApplicationListener)
spring.config.location= # Config file locations.
spring.config.name=application # Config file name.

# HAZELCAST (HazelcastProperties)
spring.hazelcast.config= # The location of the configuration file to use to initialize Hazelcast.

# PROJECT INFORMATION (ProjectInfoProperties)
spring.info.build.location=classpath:META-INF/build-info.properties # Location of the generated build-info.properties file.
spring.info.git.location=classpath:git.properties # Location of the generated git.properties file.

# JMX
spring.jmx.default-domain= # JMX domain name.
spring.jmx.enabled=true # Expose management beans to the JMX domain.
spring.jmx.server=mbeanServer # MBeanServer bean name.

# Email (MailProperties)
spring.mail.default-encoding=UTF-8 # Default MimeMessage encoding.
spring.mail.host= # SMTP server host. For instance `smtp.example.com`
spring.mail.jndi-name= # Session JNDI name. When set, takes precedence to others mail settings.
spring.mail.password= # Login password of the SMTP server.
spring.mail.port= # SMTP server port.
spring.mail.properties.*= # Additional JavaMail session properties.
spring.mail.protocol=smtp # Protocol used by the SMTP server.
spring.mail.test-connection=false # Test that the mail server is available on startup.
spring.mail.username= # Login user of the SMTP server.

# APPLICATION SETTINGS (SpringApplication)
spring.main.banner-mode=console # Mode used to display the banner when the application runs.
spring.main.sources= # Sources (class name, package name or XML resource location) to include in the ApplicationContext.
spring.main.web-environment= # Run the application in a web environment (auto-detected by default).

# FILE ENCODING (FileEncodingApplicationListener)
spring.mandatory-file-encoding= # Expected character encoding the application must use.

# INTERNATIONALIZATION (MessageSourceAutoConfiguration)
spring.messages.always-use-message-format=false # Set whether to always apply the MessageFormat rules, parsing even messages without arguments.
spring.messages.basename=messages # Comma-separated list of basenames, each following the ResourceBundle convention.
spring.messages.cache-seconds=-1 # Loaded resource bundle files cache expiration, in seconds. When set to -1, bundles are cached forever.
spring.messages.encoding=UTF-8 # Message bundles encoding.
spring.messages.fallback-to-system-locale=true # Set whether to fall back to the system Locale if no files for a specific Locale have been found.

# OUTPUT
spring.output.ansi.enabled=detect # Configure the ANSI output.

# PID FILE (ApplicationPidFileWriter)
spring.pid.fail-on-write-error= # Fail if ApplicationPidFileWriter is used but it cannot write the PID file.
spring.pid.file= # Location of the PID file to write (if ApplicationPidFileWriter is used).

# PROFILES
spring.profiles.active= # Comma-separated list (or list if using YAML) of active profiles.
spring.profiles.include= # Unconditionally activate the specified comma separated profiles (or list of profiles if using YAML).

# SENDGRID (SendGridAutoConfiguration)
spring.sendgrid.api-key= # SendGrid api key (alternative to username/password).
spring.sendgrid.username= # SendGrid account username.
spring.sendgrid.password= # SendGrid account password.
spring.sendgrid.proxy.host= # SendGrid proxy host.
spring.sendgrid.proxy.port= # SendGrid proxy port.


# ----------------------------------------
# WEB PROPERTIES
# ----------------------------------------

# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server.address= # Network address to which the server should bind to.
server.compression.enabled=false # If response compression is enabled.
server.compression.excluded-user-agents= # List of user-agents to exclude from compression.
server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript # Comma-separated list of MIME types that should be compressed.
server.compression.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 (i.e. infinite) timeout.
server.context-parameters.*= # Servlet context init parameters. For instance `server.context-parameters.a=alpha`
server.context-path= # Context path of the application.
server.display-name=application # Display name of the application.
server.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.
server.error.include-stacktrace=never # When to include a "stacktrace" attribute.
server.error.path=/error # Path of the error controller.
server.error.whitelabel.enabled=true # Enable the default error page displayed in browsers in case of a server error.
server.jetty.acceptors= # Number of acceptor threads to use.
server.jetty.max-http-post-size=0 # Maximum size in bytes of the HTTP post or put content.
server.jetty.selectors= # Number of selector threads to use.
server.jsp-servlet.class-name=org.apache.jasper.servlet.JspServlet # The class name of the JSP servlet.
server.jsp-servlet.init-parameters.*= # Init parameters used to configure the JSP servlet
server.jsp-servlet.registered=true # Whether or not the JSP servlet is registered
server.port=8080 # Server HTTP port.
server.server-header= # Value to use for the Server response header (no header is sent if empty)
server.servlet-path=/ # Path of the main dispatcher servlet.
server.use-forward-headers= # If X-Forwarded-* headers should be applied to the HttpRequest.
server.session.cookie.comment= # Comment for the session cookie.
server.session.cookie.domain= # Domain for the session cookie.
server.session.cookie.http-only= # "HttpOnly" flag for the session cookie.
server.session.cookie.max-age= # Maximum age of the session cookie in seconds.
server.session.cookie.name= # Session cookie name.
server.session.cookie.path= # Path of the session cookie.
server.session.cookie.secure= # "Secure" flag for the session cookie.
server.session.persistent=false # Persist session data between restarts.
server.session.store-dir= # Directory used to store session data.
server.session.timeout= # Session timeout in seconds.
server.session.tracking-modes= # Session tracking modes (one or more of the following: "cookie", "url", "ssl").
server.ssl.ciphers= # Supported SSL ciphers.
server.ssl.client-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store.
server.ssl.enabled= # Enable SSL support.
server.ssl.enabled-protocols= # Enabled SSL protocols.
server.ssl.key-alias= # Alias that identifies the key in the key store.
server.ssl.key-password= # Password used to access the key in the key store.
server.ssl.key-store= # Path to the key store that holds the SSL certificate (typically a jks file).
server.ssl.key-store-password= # Password used to access the key store.
server.ssl.key-store-provider= # Provider for the key store.
server.ssl.key-store-type= # Type of the key store.
server.ssl.protocol=TLS # SSL protocol to use.
server.ssl.trust-store= # Trust store that holds SSL certificates.
server.ssl.trust-store-password= # Password used to access the trust store.
server.ssl.trust-store-provider= # Provider for the trust store.
server.ssl.trust-store-type= # Type of the trust store.
server.tomcat.accept-count= # Maximum queue length for incoming connection requests when all possible request processing threads are in use.
server.tomcat.accesslog.buffered=true # Buffer output such that it is only flushed periodically.
server.tomcat.accesslog.directory=logs # Directory in which log files are created. Can be relative to the tomcat base dir or absolute.
server.tomcat.accesslog.enabled=false # Enable access log.
server.tomcat.accesslog.file-date-format=.yyyy-MM-dd # Date format to place in log file name.
server.tomcat.accesslog.pattern=common # Format pattern for access logs.
server.tomcat.accesslog.prefix=access_log # Log file name prefix.
server.tomcat.accesslog.rename-on-rotate=false # Defer inclusion of the date stamp in the file name until rotate time.
server.tomcat.accesslog.request-attributes-enabled=false # Set request attributes for IP address, Hostname, protocol and port used for the request.
server.tomcat.accesslog.rotate=true # Enable access log rotation.
server.tomcat.accesslog.suffix=.log # Log file name suffix.
server.tomcat.additional-tld-skip-patterns= # Comma-separated list of additional patterns that match jars to ignore for TLD scanning.
server.tomcat.background-processor-delay=30 # Delay in seconds between the invocation of backgroundProcess methods.
server.tomcat.basedir= # Tomcat base directory. If not specified a temporary directory will be used.
server.tomcat.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\
169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\
127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3} # regular expression matching trusted IP addresses.
server.tomcat.max-connections= # Maximum number of connections that the server will accept and process at any given time.
server.tomcat.max-http-post-size=0 # Maximum size in bytes of the HTTP post content.
server.tomcat.max-threads=0 # Maximum amount of worker threads.
server.tomcat.min-spare-threads=0 # Minimum amount of worker threads.
server.tomcat.port-header=X-Forwarded-Port # Name of the HTTP header used to override the original port value.
server.tomcat.protocol-header= # Header that holds the incoming protocol, usually named "X-Forwarded-Proto".
server.tomcat.protocol-header-https-value=https # Value of the protocol header that indicates that the incoming request uses SSL.
server.tomcat.redirect-context-root= # Whether requests to the context root should be redirected by appending a / to the path.
server.tomcat.remote-ip-header= # Name of the http header from which the remote ip is extracted. For instance `X-FORWARDED-FOR`
server.tomcat.uri-encoding=UTF-8 # Character encoding to use to decode the URI.
server.undertow.accesslog.dir= # Undertow access log directory.
server.undertow.accesslog.enabled=false # Enable access log.
server.undertow.accesslog.pattern=common # Format pattern for access logs.
server.undertow.accesslog.prefix=access_log. # Log file name prefix.
server.undertow.accesslog.rotate=true # Enable access log rotation.
server.undertow.accesslog.suffix=log # Log file name suffix.
server.undertow.buffer-size= # Size of each buffer in bytes.
server.undertow.direct-buffers= # Allocate buffers outside the Java heap.
server.undertow.io-threads= # Number of I/O threads to create for the worker.
server.undertow.max-http-post-size=0 # Maximum size in bytes of the HTTP post content.
server.undertow.worker-threads= # Number of worker threads.

# FREEMARKER (FreeMarkerAutoConfiguration)
spring.freemarker.allow-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.freemarker.allow-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.freemarker.cache=false # Enable template caching.
spring.freemarker.charset=UTF-8 # Template encoding.
spring.freemarker.check-template-location=true # Check that the templates location exists.
spring.freemarker.content-type=text/html # Content-Type value.
spring.freemarker.enabled=true # Enable MVC view resolution for this technology.
spring.freemarker.expose-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.
spring.freemarker.expose-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
spring.freemarker.expose-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
spring.freemarker.prefer-file-system-access=true # Prefer file system access for template loading. File system access enables hot detection of template changes.
spring.freemarker.prefix= # Prefix that gets prepended to view names when building a URL.
spring.freemarker.request-context-attribute= # Name of the RequestContext attribute for all views.
spring.freemarker.settings.*= # Well-known FreeMarker keys which will be passed to FreeMarker's Configuration.
spring.freemarker.suffix=.ftl # Suffix that gets appended to view names when building a URL.
spring.freemarker.template-loader-path=classpath:/templates/ # Comma-separated list of template paths.
spring.freemarker.view-names= # White list of view names that can be resolved.

# GROOVY TEMPLATES (GroovyTemplateAutoConfiguration)
spring.groovy.template.allow-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.groovy.template.allow-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.groovy.template.cache= # Enable template caching.
spring.groovy.template.charset=UTF-8 # Template encoding.
spring.groovy.template.check-template-location=true # Check that the templates location exists.
spring.groovy.template.configuration.*= # See GroovyMarkupConfigurer
spring.groovy.template.content-type=test/html # Content-Type value.
spring.groovy.template.enabled=true # Enable MVC view resolution for this technology.
spring.groovy.template.expose-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.
spring.groovy.template.expose-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
spring.groovy.template.expose-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
spring.groovy.template.prefix= # Prefix that gets prepended to view names when building a URL.
spring.groovy.template.request-context-attribute= # Name of the RequestContext attribute for all views.
spring.groovy.template.resource-loader-path=classpath:/templates/ # Template path.
spring.groovy.template.suffix=.tpl # Suffix that gets appended to view names when building a URL.
spring.groovy.template.view-names= # White list of view names that can be resolved.

# SPRING HATEOAS (HateoasProperties)
spring.hateoas.use-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
spring.http.converters.preferred-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)
spring.http.encoding.charset=UTF-8 # Charset of HTTP requests and responses. Added to the "Content-Type" header if not set explicitly.
spring.http.encoding.enabled=true # Enable http encoding support.
spring.http.encoding.force= # Force the encoding to the configured charset on HTTP requests and responses.
spring.http.encoding.force-request= # Force the encoding to the configured charset on HTTP requests. Defaults to true when "force" has not been specified.
spring.http.encoding.force-response= # Force the encoding to the configured charset on HTTP responses.
spring.http.encoding.mapping= # Locale to Encoding mapping.

# MULTIPART (MultipartProperties)
spring.http.multipart.enabled=true # Enable support of multi-part uploads.
spring.http.multipart.file-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.
spring.http.multipart.location= # Intermediate location of uploaded files.
spring.http.multipart.max-file-size=1MB # Max file size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
spring.http.multipart.max-request-size=10MB # Max request size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.
spring.http.multipart.resolve-lazily=false # Whether to resolve the multipart request lazily at the time of file or parameter access.

# JACKSON (JacksonProperties)
spring.jackson.date-format= # Date format string or a fully-qualified date format class name. For instance `yyyy-MM-dd HH:mm:ss`.
spring.jackson.default-property-inclusion= # Controls the inclusion of properties during serialization.
spring.jackson.deserialization.*= # Jackson on/off features that affect the way Java objects are deserialized.
spring.jackson.generator.*= # Jackson on/off features for generators.
spring.jackson.joda-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.
spring.jackson.locale= # Locale used for formatting.
spring.jackson.mapper.*= # Jackson general purpose on/off features.
spring.jackson.parser.*= # Jackson on/off features for parsers.
spring.jackson.property-naming-strategy= # One of the constants on Jackson's PropertyNamingStrategy. Can also be a fully-qualified class name of a PropertyNamingStrategy subclass.
spring.jackson.serialization.*= # Jackson on/off features that affect the way Java objects are serialized.
spring.jackson.time-zone= # Time zone used when formatting dates. For instance `America/Los_Angeles`

# JERSEY (JerseyProperties)
spring.jersey.application-path= # Path that serves as the base URI for the application. Overrides the value of "@ApplicationPath" if specified.
spring.jersey.filter.order=0 # Jersey filter chain order.
spring.jersey.init.*= # Init parameters to pass to Jersey via the servlet or filter.
spring.jersey.servlet.load-on-startup=-1 # Load on startup priority of the Jersey servlet.
spring.jersey.type=servlet # Jersey integration type.

# SPRING LDAP (LdapProperties)
spring.ldap.urls= # LDAP URLs of the server.
spring.ldap.base= # Base suffix from which all operations should originate.
spring.ldap.username= # Login user of the server.
spring.ldap.password= # Login password of the server.
spring.ldap.base-environment.*= # LDAP specification settings.

# EMBEDDED LDAP (EmbeddedLdapProperties)
spring.ldap.embedded.base-dn= # The base DN
spring.ldap.embedded.credential.username= # Embedded LDAP username.
spring.ldap.embedded.credential.password= # Embedded LDAP password.
spring.ldap.embedded.ldif=classpath:schema.ldif # Schema (LDIF) script resource reference.
spring.ldap.embedded.port= # Embedded LDAP port.
spring.ldap.embedded.validation.enabled=true # Enable LDAP schema validation.
spring.ldap.embedded.validation.schema= # Path to the custom schema.

# SPRING MOBILE DEVICE VIEWS (DeviceDelegatingViewResolverAutoConfiguration)
spring.mobile.devicedelegatingviewresolver.enable-fallback=false # Enable support for fallback resolution.
spring.mobile.devicedelegatingviewresolver.enabled=false # Enable device view resolver.
spring.mobile.devicedelegatingviewresolver.mobile-prefix=mobile/ # Prefix that gets prepended to view names for mobile devices.
spring.mobile.devicedelegatingviewresolver.mobile-suffix= # Suffix that gets appended to view names for mobile devices.
spring.mobile.devicedelegatingviewresolver.normal-prefix= # Prefix that gets prepended to view names for normal devices.
spring.mobile.devicedelegatingviewresolver.normal-suffix= # Suffix that gets appended to view names for normal devices.
spring.mobile.devicedelegatingviewresolver.tablet-prefix=tablet/ # Prefix that gets prepended to view names for tablet devices.
spring.mobile.devicedelegatingviewresolver.tablet-suffix= # Suffix that gets appended to view names for tablet devices.

# SPRING MOBILE SITE PREFERENCE (SitePreferenceAutoConfiguration)
spring.mobile.sitepreference.enabled=true # Enable SitePreferenceHandler.

# MUSTACHE TEMPLATES (MustacheAutoConfiguration)
spring.mustache.allow-request-override= # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.mustache.allow-session-override= # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.
spring.mustache.cache= # Enable template caching.
spring.mustache.charset= # Template encoding.
spring.mustache.check-template-location= # Check that the templates location exists.
spring.mustache.content-type= # Content-Type value.
spring.mustache.enabled= # Enable MVC view resolution for this technology.
spring.mustache.expose-request-attributes= # Set whether all request attributes should be added to the model prior to merging with the template.
spring.mustache.expose-session-attributes= # Set whether all HttpSession attributes should be added to the model prior to merging with the template.
spring.mustache.expose-spring-macro-helpers= # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".
spring.mustache.prefix=classpath:/templates/ # Prefix to apply to template names.
spring.mustache.request-context-attribute= # Name of the RequestContext attribute for all views.
spring.mustache.suffix=.html # Suffix to apply to template names.
spring.mustache.view-names= # White list of view names that can be resolved.

# SPRING MVC (WebMvcProperties)
spring.mvc.async.request-timeout= # Amount of time (in milliseconds) before asynchronous request handling times out.
spring.mvc.date-format= # Date format to use. For instance `dd/MM/yyyy`.
spring.mvc.dispatch-trace-request=false # Dispatch TRACE requests to the FrameworkServlet doService method.
spring.mvc.dispatch-options-request=true # Dispatch OPTIONS requests to the FrameworkServlet doService method.
spring.mvc.favicon.enabled=true # Enable resolution of favicon.ico.
spring.mvc.formcontent.putfilter.enabled=true # Enable Spring's HttpPutFormContentFilter.
spring.mvc.ignore-default-model-on-redirect=true # If the content of the "default" model should be ignored during redirect scenarios.
spring.mvc.locale= # Locale to use. By default, this locale is overridden by the "Accept-Language" header.
spring.mvc.locale-resolver=accept-header # Define how the locale should be resolved.
spring.mvc.log-resolved-exception=false # Enable warn logging of exceptions resolved by a "HandlerExceptionResolver".
spring.mvc.media-types.*= # Maps file extensions to media types for content negotiation.
spring.mvc.message-codes-resolver-format= # Formatting strategy for message codes. For instance `PREFIX_ERROR_CODE`.
spring.mvc.servlet.load-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.
spring.mvc.static-path-pattern=/** # Path pattern used for static resources.
spring.mvc.throw-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 prefix.
spring.mvc.view.suffix= # Spring MVC view suffix.

# SPRING RESOURCES HANDLING (ResourceProperties)
spring.resources.add-mappings=true # Enable default resource handling.
spring.resources.cache-period= # Cache period for the resources served by the resource handler, in seconds.
spring.resources.chain.cache=true # Enable caching in the Resource chain.
spring.resources.chain.enabled= # Enable the Spring Resource Handling chain. Disabled by default unless at least one strategy has been enabled.
spring.resources.chain.gzipped=false # Enable resolution of already gzipped resources.
spring.resources.chain.html-application-cache=false # Enable HTML5 application cache manifest rewriting.
spring.resources.chain.strategy.content.enabled=false # Enable the content Version Strategy.
spring.resources.chain.strategy.content.paths=/** # Comma-separated list of patterns to apply to the Version Strategy.
spring.resources.chain.strategy.fixed.enabled=false # Enable the fixed Version Strategy.
spring.resources.chain.strategy.fixed.paths=/** # Comma-separated list of patterns to apply to the Version Strategy.
spring.resources.chain.strategy.fixed.version= # Version string to use for the Version Strategy.
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/ # Locations of static resources.

# SPRING SESSION (SessionProperties)
spring.session.hazelcast.flush-mode=on-save # Sessions flush mode.
spring.session.hazelcast.map-name=spring:session:sessions # Name of the map used to store sessions.
spring.session.jdbc.initializer.enabled= # Create the required session tables on startup if necessary. Enabled automatically if the default table name is set or a custom schema is configured.
spring.session.jdbc.schema=classpath:org/springframework/session/jdbc/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
spring.session.jdbc.table-name=SPRING_SESSION # Name of database table used to store sessions.
spring.session.mongo.collection-name=sessions # Collection name used to store sessions.
spring.session.redis.flush-mode=on-save # Sessions flush mode.
spring.session.redis.namespace= # Namespace for keys used to store sessions.
spring.session.store-type= # Session store type.

# SPRING SOCIAL (SocialWebAutoConfiguration)
spring.social.auto-connection-views=false # Enable the connection status view for supported providers.

# SPRING SOCIAL FACEBOOK (FacebookAutoConfiguration)
spring.social.facebook.app-id= # your application's Facebook App ID
spring.social.facebook.app-secret= # your application's Facebook App Secret

# SPRING SOCIAL LINKEDIN (LinkedInAutoConfiguration)
spring.social.linkedin.app-id= # your application's LinkedIn App ID
spring.social.linkedin.app-secret= # your application's LinkedIn App Secret

# SPRING SOCIAL TWITTER (TwitterAutoConfiguration)
spring.social.twitter.app-id= # your application's Twitter App ID
spring.social.twitter.app-secret= # your application's Twitter App Secret

# THYMELEAF (ThymeleafAutoConfiguration)
spring.thymeleaf.cache=true # Enable template caching.
spring.thymeleaf.check-template=true # Check that the template exists before rendering it.
spring.thymeleaf.check-template-location=true # Check that the templates location exists.
spring.thymeleaf.content-type=text/html # Content-Type value.
spring.thymeleaf.enabled=true # Enable MVC Thymeleaf view resolution.
spring.thymeleaf.encoding=UTF-8 # Template encoding.
spring.thymeleaf.excluded-view-names= # Comma-separated list of view names that should be excluded from resolution.
spring.thymeleaf.mode=HTML5 # Template mode to be applied to templates. See also StandardTemplateModeHandlers.
spring.thymeleaf.prefix=classpath:/templates/ # Prefix that gets prepended to view names when building a URL.
spring.thymeleaf.suffix=.html # Suffix that gets appended to view names when building a URL.
spring.thymeleaf.template-resolver-order= # Order of the template resolver in the chain.
spring.thymeleaf.view-names= # Comma-separated list of view names that can be resolved.

# SPRING WEB SERVICES (WebServicesProperties)
spring.webservices.path=/services # Path that serves as the base URI for the services.
spring.webservices.servlet.init= # Servlet init parameters to pass to Spring Web Services.
spring.webservices.servlet.load-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.

 

# ----------------------------------------
# SECURITY PROPERTIES
# ----------------------------------------
# SECURITY (SecurityProperties)
security.basic.authorize-mode=role # Security authorize mode to apply.
security.basic.enabled=true # Enable basic authentication.
security.basic.path=/** # Comma-separated list of paths to secure.
security.basic.realm=Spring # HTTP basic realm name.
security.enable-csrf=false # Enable Cross Site Request Forgery support.
security.filter-order=0 # Security filter chain order.
security.filter-dispatcher-types=ASYNC, FORWARD, INCLUDE, REQUEST # Security filter chain dispatcher types.
security.headers.cache=true # Enable cache control HTTP headers.
security.headers.content-security-policy= # Value for content security policy header.
security.headers.content-security-policy-mode=default # Content security policy mode.
security.headers.content-type=true # Enable "X-Content-Type-Options" header.
security.headers.frame=true # Enable "X-Frame-Options" header.
security.headers.hsts=all # HTTP Strict Transport Security (HSTS) mode (none, domain, all).
security.headers.xss=true # Enable cross site scripting (XSS) protection.
security.ignored= # Comma-separated list of paths to exclude from the default secured paths.
security.require-ssl=false # Enable secure channel for all requests.
security.sessions=stateless # Session creation policy (always, never, if_required, stateless).
security.user.name=user # Default user name.
security.user.password= # Password for the default user name. A random password is logged on startup by default.
security.user.role=USER # Granted roles for the default user name.

# SECURITY OAUTH2 CLIENT (OAuth2ClientProperties)
security.oauth2.client.client-id= # OAuth2 client id.
security.oauth2.client.client-secret= # OAuth2 client secret. A random secret is generated by default

# SECURITY OAUTH2 RESOURCES (ResourceServerProperties)
security.oauth2.resource.filter-order= # The order of the filter chain used to authenticate tokens.
security.oauth2.resource.id= # Identifier of the resource.
security.oauth2.resource.jwt.key-uri= # The URI of the JWT token. Can be set if the value is not available and the key is public.
security.oauth2.resource.jwt.key-value= # The verification key of the JWT token. Can either be a symmetric secret or PEM-encoded RSA public key.
security.oauth2.resource.jwk.key-set-uri= # The URI for getting the set of keys that can be used to validate the token.
security.oauth2.resource.prefer-token-info=true # Use the token info, can be set to false to use the user info.
security.oauth2.resource.service-id=resource #
security.oauth2.resource.token-info-uri= # URI of the token decoding endpoint.
security.oauth2.resource.token-type= # The token type to send when using the userInfoUri.
security.oauth2.resource.user-info-uri= # URI of the user endpoint.

# SECURITY OAUTH2 SSO (OAuth2SsoProperties)
security.oauth2.sso.filter-order= # Filter order to apply if not providing an explicit WebSecurityConfigurerAdapter
security.oauth2.sso.login-path=/login # Path to the login page, i.e. the one that triggers the redirect to the OAuth2 Authorization Server


# ----------------------------------------
# DATA PROPERTIES
# ----------------------------------------

# FLYWAY (FlywayProperties)
flyway.baseline-description= #
flyway.baseline-version=1 # version to start migration
flyway.baseline-on-migrate= #
flyway.check-location=false # Check that migration scripts location exists.
flyway.clean-on-validation-error= #
flyway.enabled=true # Enable flyway.
flyway.encoding= #
flyway.ignore-failed-future-migration= #
flyway.init-sqls= # SQL statements to execute to initialize a connection immediately after obtaining it.
flyway.locations=classpath:db/migration # locations of migrations scripts
flyway.out-of-order= #
flyway.password= # JDBC password if you want Flyway to create its own DataSource
flyway.placeholder-prefix= #
flyway.placeholder-replacement= #
flyway.placeholder-suffix= #
flyway.placeholders.*= #
flyway.schemas= # schemas to update
flyway.sql-migration-prefix=V #
flyway.sql-migration-separator= #
flyway.sql-migration-suffix=.sql #
flyway.table= #
flyway.url= # JDBC url of the database to migrate. If not set, the primary configured data source is used.
flyway.user= # Login user of the database to migrate.
flyway.validate-on-migrate= #

# LIQUIBASE (LiquibaseProperties)
liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml # Change log configuration path.
liquibase.check-change-log-location=true # Check the change log location exists.
liquibase.contexts= # Comma-separated list of runtime contexts to use.
liquibase.default-schema= # Default database schema.
liquibase.drop-first=false # Drop the database schema first.
liquibase.enabled=true # Enable liquibase support.
liquibase.labels= # Comma-separated list of runtime labels to use.
liquibase.parameters.*= # Change log parameters.
liquibase.password= # Login password of the database to migrate.
liquibase.rollback-file= # File to which rollback SQL will be written when an update is performed.
liquibase.url= # JDBC url of the database to migrate. If not set, the primary configured data source is used.
liquibase.user= # Login user of the database to migrate.

# COUCHBASE (CouchbaseProperties)
spring.couchbase.bootstrap-hosts= # Couchbase nodes (host or IP address) to bootstrap from.
spring.couchbase.bucket.name=default # Name of the bucket to connect to.
spring.couchbase.bucket.password= # Password of the bucket.
spring.couchbase.env.endpoints.key-value=1 # Number of sockets per node against the Key/value service.
spring.couchbase.env.endpoints.query=1 # Number of sockets per node against the Query (N1QL) service.
spring.couchbase.env.endpoints.view=1 # Number of sockets per node against the view service.
spring.couchbase.env.ssl.enabled= # Enable SSL support. Enabled automatically if a "keyStore" is provided unless specified otherwise.
spring.couchbase.env.ssl.key-store= # Path to the JVM key store that holds the certificates.
spring.couchbase.env.ssl.key-store-password= # Password used to access the key store.
spring.couchbase.env.timeouts.connect=5000 # Bucket connections timeout in milliseconds.
spring.couchbase.env.timeouts.key-value=2500 # Blocking operations performed on a specific key timeout in milliseconds.
spring.couchbase.env.timeouts.query=7500 # N1QL query operations timeout in milliseconds.
spring.couchbase.env.timeouts.socket-connect=1000 # Socket connect connections timeout in milliseconds.
spring.couchbase.env.timeouts.view=7500 # Regular and geospatial view operations timeout in milliseconds.

# DAO (PersistenceExceptionTranslationAutoConfiguration)
spring.dao.exceptiontranslation.enabled=true # Enable the PersistenceExceptionTranslationPostProcessor.

# CASSANDRA (CassandraProperties)
spring.data.cassandra.cluster-name= # Name of the Cassandra cluster.
spring.data.cassandra.compression=none # Compression supported by the Cassandra binary protocol.
spring.data.cassandra.connect-timeout-millis= # Socket option: connection time out.
spring.data.cassandra.consistency-level= # Queries consistency level.
spring.data.cassandra.contact-points=localhost # Comma-separated list of cluster node addresses.
spring.data.cassandra.fetch-size= # Queries default fetch size.
spring.data.cassandra.keyspace-name= # Keyspace name to use.
spring.data.cassandra.load-balancing-policy= # Class name of the load balancing policy.
spring.data.cassandra.port= # Port of the Cassandra server.
spring.data.cassandra.password= # Login password of the server.
spring.data.cassandra.read-timeout-millis= # Socket option: read time out.
spring.data.cassandra.reconnection-policy= # Reconnection policy class.
spring.data.cassandra.repositories.enabled= # Enable Cassandra repositories.
spring.data.cassandra.retry-policy= # Class name of the retry policy.
spring.data.cassandra.serial-consistency-level= # Queries serial consistency level.
spring.data.cassandra.schema-action=none # Schema action to take at startup.
spring.data.cassandra.ssl=false # Enable SSL support.
spring.data.cassandra.username= # Login user of the server.

# DATA COUCHBASE (CouchbaseDataProperties)
spring.data.couchbase.auto-index=false # Automatically create views and indexes.
spring.data.couchbase.consistency=read-your-own-writes # Consistency to apply by default on generated queries.
spring.data.couchbase.repositories.enabled=true # Enable Couchbase repositories.

# ELASTICSEARCH (ElasticsearchProperties)
spring.data.elasticsearch.cluster-name=elasticsearch # Elasticsearch cluster name.
spring.data.elasticsearch.cluster-nodes= # Comma-separated list of cluster node addresses. If not specified, starts a client node.
spring.data.elasticsearch.properties.*= # Additional properties used to configure the client.
spring.data.elasticsearch.repositories.enabled=true # Enable Elasticsearch repositories.

# DATA LDAP
spring.data.ldap.repositories.enabled=true # Enable LDAP repositories.

# MONGODB (MongoProperties)
spring.data.mongodb.authentication-database= # Authentication database name.
spring.data.mongodb.database=test # Database name.
spring.data.mongodb.field-naming-strategy= # Fully qualified name of the FieldNamingStrategy to use.
spring.data.mongodb.grid-fs-database= # GridFS database name.
spring.data.mongodb.host=localhost # Mongo server host. Cannot be set with uri.
spring.data.mongodb.password= # Login password of the mongo server. Cannot be set with uri.
spring.data.mongodb.port=27017 # Mongo server port. Cannot be set with uri.
spring.data.mongodb.repositories.enabled=true # Enable Mongo repositories.
spring.data.mongodb.uri=mongodb://localhost/test # Mongo database URI. Cannot be set with host, port and credentials.
spring.data.mongodb.username= # Login user of the mongo server. Cannot be set with uri.

# DATA REDIS
spring.data.redis.repositories.enabled=true # Enable Redis repositories.

# NEO4J (Neo4jProperties)
spring.data.neo4j.compiler= # Compiler to use.
spring.data.neo4j.embedded.enabled=true # Enable embedded mode if the embedded driver is available.
spring.data.neo4j.open-in-view=false # Register OpenSessionInViewInterceptor. Binds a Neo4j Session to the thread for the entire processing of the request.
spring.data.neo4j.password= # Login password of the server.
spring.data.neo4j.repositories.enabled=true # Enable Neo4j repositories.
spring.data.neo4j.uri= # URI used by the driver. Auto-detected by default.
spring.data.neo4j.username= # Login user of the server.

# DATA REST (RepositoryRestProperties)
spring.data.rest.base-path= # Base path to be used by Spring Data REST to expose repository resources.
spring.data.rest.default-page-size= # Default size of pages.
spring.data.rest.detection-strategy=default # Strategy to use to determine which repositories get exposed.
spring.data.rest.enable-enum-translation= # Enable enum value translation via the Spring Data REST default resource bundle.
spring.data.rest.limit-param-name= # Name of the URL query string parameter that indicates how many results to return at once.
spring.data.rest.max-page-size= # Maximum size of pages.
spring.data.rest.page-param-name= # Name of the URL query string parameter that indicates what page to return.
spring.data.rest.return-body-on-create= # Return a response body after creating an entity.
spring.data.rest.return-body-on-update= # Return a response body after updating an entity.
spring.data.rest.sort-param-name= # Name of the URL query string parameter that indicates what direction to sort results.

# SOLR (SolrProperties)
spring.data.solr.host=http://127.0.0.1:8983/solr # Solr host. Ignored if "zk-host" is set.
spring.data.solr.repositories.enabled=true # Enable Solr repositories.
spring.data.solr.zk-host= # ZooKeeper host address in the form HOST:PORT.

# DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
spring.datasource.continue-on-error=false # Do not stop if an error occurs while initializing the database.
spring.datasource.data= # Data (DML) script resource references.
spring.datasource.data-username= # User of the database to execute DML scripts (if different).
spring.datasource.data-password= # Password of the database to execute DML scripts (if different).
spring.datasource.dbcp2.*= # Commons DBCP2 specific settings
spring.datasource.driver-class-name= # Fully qualified name of the JDBC driver. Auto-detected based on the URL by default.
spring.datasource.generate-unique-name=false # Generate a random datasource name.
spring.datasource.hikari.*= # Hikari specific settings
spring.datasource.initialize=true # Populate the database using 'data.sql'.
spring.datasource.jmx-enabled=false # Enable JMX support (if provided by the underlying pool).
spring.datasource.jndi-name= # JNDI location of the datasource. Class, url, username & password are ignored when set.
spring.datasource.name=testdb # Name of the datasource.
spring.datasource.password= # Login password of the database.
spring.datasource.platform=all # Platform to use in the DDL or DML scripts (e.g. schema-${platform}.sql or data-${platform}.sql).
spring.datasource.schema= # Schema (DDL) script resource references.
spring.datasource.schema-username= # User of the database to execute DDL scripts (if different).
spring.datasource.schema-password= # Password of the database to execute DDL scripts (if different).
spring.datasource.separator=; # Statement separator in SQL initialization scripts.
spring.datasource.sql-script-encoding= # SQL scripts encoding.
spring.datasource.tomcat.*= # Tomcat datasource specific settings
spring.datasource.type= # Fully qualified name of the connection pool implementation to use. By default, it is auto-detected from the classpath.
spring.datasource.url= # JDBC url of the database.
spring.datasource.username= # Login user of the database.
spring.datasource.xa.data-source-class-name= # XA datasource fully qualified name.
spring.datasource.xa.properties= # Properties to pass to the XA data source.

# JEST (Elasticsearch HTTP client) (JestProperties)
spring.elasticsearch.jest.connection-timeout=3000 # Connection timeout in milliseconds.
spring.elasticsearch.jest.multi-threaded=true # Enable connection requests from multiple execution threads.
spring.elasticsearch.jest.password= # Login password.
spring.elasticsearch.jest.proxy.host= # Proxy host the HTTP client should use.
spring.elasticsearch.jest.proxy.port= # Proxy port the HTTP client should use.
spring.elasticsearch.jest.read-timeout=3000 # Read timeout in milliseconds.
spring.elasticsearch.jest.uris=http://localhost:9200 # Comma-separated list of the Elasticsearch instances to use.
spring.elasticsearch.jest.username= # Login user.

# H2 Web Console (H2ConsoleProperties)
spring.h2.console.enabled=false # Enable the console.
spring.h2.console.path=/h2-console # Path at which the console will be available.
spring.h2.console.settings.trace=false # Enable trace output.
spring.h2.console.settings.web-allow-others=false # Enable remote access.

# JOOQ (JooqAutoConfiguration)
spring.jooq.sql-dialect= # SQLDialect JOOQ used when communicating with the configured datasource. For instance `POSTGRES`

# JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)
spring.data.jpa.repositories.enabled=true # Enable JPA repositories.
spring.jpa.database= # Target database to operate on, auto-detected by default. Can be alternatively set using the "databasePlatform" property.
spring.jpa.database-platform= # Name of the target database to operate on, auto-detected by default. Can be alternatively set using the "Database" enum.
spring.jpa.generate-ddl=false # Initialize the schema on startup.
spring.jpa.hibernate.ddl-auto= # DDL mode. This is actually a shortcut for the "hibernate.hbm2ddl.auto" property. Default to "create-drop" when using an embedded database, "none" otherwise.
spring.jpa.hibernate.naming.implicit-strategy= # Hibernate 5 implicit naming strategy fully qualified name.
spring.jpa.hibernate.naming.physical-strategy= # Hibernate 5 physical naming strategy fully qualified name.
spring.jpa.hibernate.naming.strategy= # Hibernate 4 naming strategy fully qualified name. Not supported with Hibernate 5.
spring.jpa.hibernate.use-new-id-generator-mappings= # Use Hibernate's newer IdentifierGenerator for AUTO, TABLE and SEQUENCE.
spring.jpa.open-in-view=true # Register OpenEntityManagerInViewInterceptor. Binds a JPA EntityManager to the thread for the entire processing of the request.
spring.jpa.properties.*= # Additional native properties to set on the JPA provider.
spring.jpa.show-sql=false # Enable logging of SQL statements.

# JTA (JtaAutoConfiguration)
spring.jta.enabled=true # Enable JTA support.
spring.jta.log-dir= # Transaction logs directory.
spring.jta.transaction-manager-id= # Transaction manager unique identifier.

# ATOMIKOS (AtomikosProperties)
spring.jta.atomikos.connectionfactory.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.
spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag=true # Whether or not to ignore the transacted flag when creating session.
spring.jta.atomikos.connectionfactory.local-transaction-mode=false # Whether or not local transactions are desired.
spring.jta.atomikos.connectionfactory.maintenance-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.
spring.jta.atomikos.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
spring.jta.atomikos.connectionfactory.max-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.
spring.jta.atomikos.connectionfactory.max-pool-size=1 # The maximum size of the pool.
spring.jta.atomikos.connectionfactory.min-pool-size=1 # The minimum size of the pool.
spring.jta.atomikos.connectionfactory.reap-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.
spring.jta.atomikos.connectionfactory.unique-resource-name=jmsConnectionFactory # The unique name used to identify the resource during recovery.
spring.jta.atomikos.datasource.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.
spring.jta.atomikos.datasource.default-isolation-level= # Default isolation level of connections provided by the pool.
spring.jta.atomikos.datasource.login-timeout= # Timeout, in seconds, for establishing a database connection.
spring.jta.atomikos.datasource.maintenance-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.
spring.jta.atomikos.datasource.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
spring.jta.atomikos.datasource.max-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.
spring.jta.atomikos.datasource.max-pool-size=1 # The maximum size of the pool.
spring.jta.atomikos.datasource.min-pool-size=1 # The minimum size of the pool.
spring.jta.atomikos.datasource.reap-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.
spring.jta.atomikos.datasource.test-query= # SQL query or statement used to validate a connection before returning it.
spring.jta.atomikos.datasource.unique-resource-name=dataSource # The unique name used to identify the resource during recovery.
spring.jta.atomikos.properties.checkpoint-interval=500 # Interval between checkpoints.
spring.jta.atomikos.properties.default-jta-timeout=10000 # Default timeout for JTA transactions.
spring.jta.atomikos.properties.enable-logging=true # Enable disk logging.
spring.jta.atomikos.properties.force-shutdown-on-vm-exit=false # Specify if a VM shutdown should trigger forced shutdown of the transaction core.
spring.jta.atomikos.properties.log-base-dir= # Directory in which the log files should be stored.
spring.jta.atomikos.properties.log-base-name=tmlog # Transactions log file base name.
spring.jta.atomikos.properties.max-actives=50 # Maximum number of active transactions.
spring.jta.atomikos.properties.max-timeout=300000 # Maximum timeout (in milliseconds) that can be allowed for transactions.
spring.jta.atomikos.properties.serial-jta-transactions=true # Specify if sub-transactions should be joined when possible.
spring.jta.atomikos.properties.service= # Transaction manager implementation that should be started.
spring.jta.atomikos.properties.threaded-two-phase-commit=false # Use different (and concurrent) threads for two-phase commit on the participating resources.
spring.jta.atomikos.properties.transaction-manager-unique-name= # Transaction manager's unique name.

# BITRONIX
spring.jta.bitronix.connectionfactory.acquire-increment=1 # Number of connections to create when growing the pool.
spring.jta.bitronix.connectionfactory.acquisition-interval=1 # Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.
spring.jta.bitronix.connectionfactory.acquisition-timeout=30 # Timeout, in seconds, for acquiring connections from the pool.
spring.jta.bitronix.connectionfactory.allow-local-transactions=true # Whether or not the transaction manager should allow mixing XA and non-XA transactions.
spring.jta.bitronix.connectionfactory.apply-transaction-timeout=false # Whether or not the transaction timeout should be set on the XAResource when it is enlisted.
spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled=true # Whether or not resources should be enlisted and delisted automatically.
spring.jta.bitronix.connectionfactory.cache-producers-consumers=true # Whether or not produces and consumers should be cached.
spring.jta.bitronix.connectionfactory.defer-connection-release=true # Whether or not the provider can run many transactions on the same connection and supports transaction interleaving.
spring.jta.bitronix.connectionfactory.ignore-recovery-failures=false # Whether or not recovery failures should be ignored.
spring.jta.bitronix.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
spring.jta.bitronix.connectionfactory.max-pool-size=10 # The maximum size of the pool. 0 denotes no limit.
spring.jta.bitronix.connectionfactory.min-pool-size=0 # The minimum size of the pool.
spring.jta.bitronix.connectionfactory.password= # The password to use to connect to the JMS provider.
spring.jta.bitronix.connectionfactory.share-transaction-connections=false # Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.
spring.jta.bitronix.connectionfactory.test-connections=true # Whether or not connections should be tested when acquired from the pool.
spring.jta.bitronix.connectionfactory.two-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).
spring.jta.bitronix.connectionfactory.unique-name=jmsConnectionFactory # The unique name used to identify the resource during recovery.
spring.jta.bitronix.connectionfactory.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources.
spring.jta.bitronix.connectionfactory.user= # The user to use to connect to the JMS provider.
spring.jta.bitronix.datasource.acquire-increment=1 # Number of connections to create when growing the pool.
spring.jta.bitronix.datasource.acquisition-interval=1 # Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.
spring.jta.bitronix.datasource.acquisition-timeout=30 # Timeout, in seconds, for acquiring connections from the pool.
spring.jta.bitronix.datasource.allow-local-transactions=true # Whether or not the transaction manager should allow mixing XA and non-XA transactions.
spring.jta.bitronix.datasource.apply-transaction-timeout=false # Whether or not the transaction timeout should be set on the XAResource when it is enlisted.
spring.jta.bitronix.datasource.automatic-enlisting-enabled=true # Whether or not resources should be enlisted and delisted automatically.
spring.jta.bitronix.datasource.cursor-holdability= # The default cursor holdability for connections.
spring.jta.bitronix.datasource.defer-connection-release=true # Whether or not the database can run many transactions on the same connection and supports transaction interleaving.
spring.jta.bitronix.datasource.enable-jdbc4-connection-test= # Whether or not Connection.isValid() is called when acquiring a connection from the pool.
spring.jta.bitronix.datasource.ignore-recovery-failures=false # Whether or not recovery failures should be ignored.
spring.jta.bitronix.datasource.isolation-level= # The default isolation level for connections.
spring.jta.bitronix.datasource.local-auto-commit= # The default auto-commit mode for local transactions.
spring.jta.bitronix.datasource.login-timeout= # Timeout, in seconds, for establishing a database connection.
spring.jta.bitronix.datasource.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.
spring.jta.bitronix.datasource.max-pool-size=10 # The maximum size of the pool. 0 denotes no limit.
spring.jta.bitronix.datasource.min-pool-size=0 # The minimum size of the pool.
spring.jta.bitronix.datasource.prepared-statement-cache-size=0 # The target size of the prepared statement cache. 0 disables the cache.
spring.jta.bitronix.datasource.share-transaction-connections=false # Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.
spring.jta.bitronix.datasource.test-query= # SQL query or statement used to validate a connection before returning it.
spring.jta.bitronix.datasource.two-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).
spring.jta.bitronix.datasource.unique-name=dataSource # The unique name used to identify the resource during recovery.
spring.jta.bitronix.datasource.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources.
spring.jta.bitronix.properties.allow-multiple-lrc=false # Allow multiple LRC resources to be enlisted into the same transaction.
spring.jta.bitronix.properties.asynchronous2-pc=false # Enable asynchronously execution of two phase commit.
spring.jta.bitronix.properties.background-recovery-interval-seconds=60 # Interval in seconds at which to run the recovery process in the background.
spring.jta.bitronix.properties.current-node-only-recovery=true # Recover only the current node.
spring.jta.bitronix.properties.debug-zero-resource-transaction=false # Log the creation and commit call stacks of transactions executed without a single enlisted resource.
spring.jta.bitronix.properties.default-transaction-timeout=60 # Default transaction timeout in seconds.
spring.jta.bitronix.properties.disable-jmx=false # Enable JMX support.
spring.jta.bitronix.properties.exception-analyzer= # Set the fully qualified name of the exception analyzer implementation to use.
spring.jta.bitronix.properties.filter-log-status=false # Enable filtering of logs so that only mandatory logs are written.
spring.jta.bitronix.properties.force-batching-enabled=true # Set if disk forces are batched.
spring.jta.bitronix.properties.forced-write-enabled=true # Set if logs are forced to disk.
spring.jta.bitronix.properties.graceful-shutdown-interval=60 # Maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown time.
spring.jta.bitronix.properties.jndi-transaction-synchronization-registry-name= # JNDI name of the TransactionSynchronizationRegistry.
spring.jta.bitronix.properties.jndi-user-transaction-name= # JNDI name of the UserTransaction.
spring.jta.bitronix.properties.journal=disk # Name of the journal. Can be 'disk', 'null' or a class name.
spring.jta.bitronix.properties.log-part1-filename=btm1.tlog # Name of the first fragment of the journal.
spring.jta.bitronix.properties.log-part2-filename=btm2.tlog # Name of the second fragment of the journal.
spring.jta.bitronix.properties.max-log-size-in-mb=2 # Maximum size in megabytes of the journal fragments.
spring.jta.bitronix.properties.resource-configuration-filename= # ResourceLoader configuration file name.
spring.jta.bitronix.properties.server-id= # ASCII ID that must uniquely identify this TM instance. Default to the machine's IP address.
spring.jta.bitronix.properties.skip-corrupted-logs=false # Skip corrupted transactions log entries.
spring.jta.bitronix.properties.warn-about-zero-resource-transaction=true # Log a warning for transactions executed without a single enlisted resource.

# NARAYANA (NarayanaProperties)
spring.jta.narayana.default-timeout=60 # Transaction timeout in seconds.
spring.jta.narayana.expiry-scanners=com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner # Comma-separated list of expiry scanners.
spring.jta.narayana.log-dir= # Transaction object store directory.
spring.jta.narayana.one-phase-commit=true # Enable one phase commit optimisation.
spring.jta.narayana.periodic-recovery-period=120 # Interval in which periodic recovery scans are performed in seconds.
spring.jta.narayana.recovery-backoff-period=10 # Back off period between first and second phases of the recovery scan in seconds.
spring.jta.narayana.recovery-db-pass= # Database password to be used by recovery manager.
spring.jta.narayana.recovery-db-user= # Database username to be used by recovery manager.
spring.jta.narayana.recovery-jms-pass= # JMS password to be used by recovery manager.
spring.jta.narayana.recovery-jms-user= # JMS username to be used by recovery manager.
spring.jta.narayana.recovery-modules= # Comma-separated list of recovery modules.
spring.jta.narayana.transaction-manager-id=1 # Unique transaction manager id.
spring.jta.narayana.xa-resource-orphan-filters= # Comma-separated list of orphan filters.

# EMBEDDED MONGODB (EmbeddedMongoProperties)
spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable.
spring.mongodb.embedded.storage.database-dir= # Directory used for data storage.
spring.mongodb.embedded.storage.oplog-size= # Maximum size of the oplog in megabytes.
spring.mongodb.embedded.storage.repl-set-name= # Name of the replica set.
spring.mongodb.embedded.version=2.6.10 # Version of Mongo to use.

# REDIS (RedisProperties)
spring.redis.cluster.max-redirects= # Maximum number of redirects to follow when executing commands across the cluster.
spring.redis.cluster.nodes= # Comma-separated list of "host:port" pairs to bootstrap from.
spring.redis.database=0 # Database index used by the connection factory.
spring.redis.url= # Connection URL, will override host, port and password (user will be ignored), e.g. redis://user:password@example.com:6379
spring.redis.host=localhost # Redis server host.
spring.redis.password= # Login password of the redis server.
spring.redis.ssl=false # Enable SSL support.
spring.redis.pool.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.
spring.redis.pool.max-idle=8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
spring.redis.pool.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.
spring.redis.pool.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.
spring.redis.port=6379 # Redis server port.
spring.redis.sentinel.master= # Name of Redis server.
spring.redis.sentinel.nodes= # Comma-separated list of host:port pairs.
spring.redis.timeout=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)
spring.activemq.broker-url= # URL of the ActiveMQ broker. Auto-generated by default.
spring.activemq.close-timeout=15000 # Time to wait, in milliseconds, before considering a close complete.
spring.activemq.in-memory=true # Specify if the default broker URL should be in memory. Ignored if an explicit broker has been specified.
spring.activemq.non-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.
spring.activemq.password= # Login password of the broker.
spring.activemq.send-timeout=0 # Time to wait, in milliseconds, on Message sends for a response. Set it to 0 to indicate to wait forever.
spring.activemq.user= # Login user of the broker.
spring.activemq.packages.trust-all= # Trust all packages.
spring.activemq.packages.trusted= # Comma-separated list of specific packages to trust (when not trusting all packages).
spring.activemq.pool.block-if-full=true # Block when a connection is requested and the pool is full. Set it to false to throw a "JMSException" instead.
spring.activemq.pool.block-if-full-timeout=-1 # Blocking period, in milliseconds, before throwing an exception if the pool is still full.
spring.activemq.pool.create-connection-on-startup=true # Create a connection on startup. Can be used to warm-up the pool on startup.
spring.activemq.pool.enabled=false # Whether a PooledConnectionFactory should be created instead of a regular ConnectionFactory.
spring.activemq.pool.expiry-timeout=0 # Connection expiration timeout in milliseconds.
spring.activemq.pool.idle-timeout=30000 # Connection idle timeout in milliseconds.
spring.activemq.pool.max-connections=1 # Maximum number of pooled connections.
spring.activemq.pool.maximum-active-session-per-connection=500 # Maximum number of active sessions per connection.
spring.activemq.pool.reconnect-on-exception=true # Reset the connection when a "JMXException" occurs.
spring.activemq.pool.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.
spring.activemq.pool.use-anonymous-producers=true # Use only one anonymous "MessageProducer" instance. Set it to false to create one "MessageProducer" every time one is required.

# ARTEMIS (ArtemisProperties)
spring.artemis.embedded.cluster-password= # Cluster password. Randomly generated on startup by default.
spring.artemis.embedded.data-directory= # Journal file directory. Not necessary if persistence is turned off.
spring.artemis.embedded.enabled=true # Enable embedded mode if the Artemis server APIs are available.
spring.artemis.embedded.persistent=false # Enable persistent store.
spring.artemis.embedded.queues= # Comma-separated list of queues to create on startup.
spring.artemis.embedded.server-id= # Server id. By default, an auto-incremented counter is used.
spring.artemis.embedded.topics= # Comma-separated list of topics to create on startup.
spring.artemis.host=localhost # Artemis broker host.
spring.artemis.mode= # Artemis deployment mode, auto-detected by default.
spring.artemis.password= # Login password of the broker.
spring.artemis.port=61616 # Artemis broker port.
spring.artemis.user= # Login user of the broker.

# SPRING BATCH (BatchProperties)
spring.batch.initializer.enabled= # 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.
spring.batch.job.enabled=true # Execute all Spring Batch jobs in the context on startup.
spring.batch.job.names= # Comma-separated list of job names to execute on startup (For instance `job1,job2`). By default, all Jobs found in the context are executed.
spring.batch.schema=classpath:org/springframework/batch/core/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
spring.batch.table-prefix= # Table prefix for all the batch meta-data tables.

# JMS (JmsProperties)
spring.jms.jndi-name= # Connection factory JNDI name. When set, takes precedence to others connection factory auto-configurations.
spring.jms.listener.acknowledge-mode= # Acknowledge mode of the container. By default, the listener is transacted with automatic acknowledgment.
spring.jms.listener.auto-startup=true # Start the container automatically on startup.
spring.jms.listener.concurrency= # Minimum number of concurrent consumers.
spring.jms.listener.max-concurrency= # Maximum number of concurrent consumers.
spring.jms.pub-sub-domain=false # Specify if the default destination type is topic.
spring.jms.template.default-destination= # Default destination to use on send/receive operations that do not have a destination parameter.
spring.jms.template.delivery-delay= # Delivery delay to use for send calls in milliseconds.
spring.jms.template.delivery-mode= # Delivery mode. Enable QoS when set.
spring.jms.template.priority= # Priority of a message when sending. Enable QoS when set.
spring.jms.template.qos-enabled= # Enable explicit QoS when sending a message.
spring.jms.template.receive-timeout= # Timeout to use for receive calls in milliseconds.
spring.jms.template.time-to-live= # Time-to-live of a message when sending in milliseconds. Enable QoS when set.

# APACHE KAFKA (KafkaProperties)
spring.kafka.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
spring.kafka.client-id= # Id to pass to the server when making requests; used for server-side logging.
spring.kafka.consumer.auto-commit-interval= # Frequency in milliseconds that the consumer offsets are auto-committed to Kafka if 'enable.auto.commit' true.
spring.kafka.consumer.auto-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.
spring.kafka.consumer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
spring.kafka.consumer.client-id= # Id to pass to the server when making requests; used for server-side logging.
spring.kafka.consumer.enable-auto-commit= # If true the consumer's offset will be periodically committed in the background.
spring.kafka.consumer.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.bytes".
spring.kafka.consumer.fetch-min-size= # Minimum amount of data the server should return for a fetch request in bytes.
spring.kafka.consumer.group-id= # Unique string that identifies the consumer group this consumer belongs to.
spring.kafka.consumer.heartbeat-interval= # Expected time in milliseconds between heartbeats to the consumer coordinator.
spring.kafka.consumer.key-deserializer= # Deserializer class for keys.
spring.kafka.consumer.max-poll-records= # Maximum number of records returned in a single call to poll().
spring.kafka.consumer.value-deserializer= # Deserializer class for values.
spring.kafka.listener.ack-count= # Number of records between offset commits when ackMode is "COUNT" or "COUNT_TIME".
spring.kafka.listener.ack-mode= # Listener AckMode; see the spring-kafka documentation.
spring.kafka.listener.ack-time= # Time in milliseconds between offset commits when ackMode is "TIME" or "COUNT_TIME".
spring.kafka.listener.concurrency= # Number of threads to run in the listener containers.
spring.kafka.listener.poll-timeout= # Timeout in milliseconds to use when polling the consumer.
spring.kafka.producer.acks= # Number of acknowledgments the producer requires the leader to have received before considering a request complete.
spring.kafka.producer.batch-size= # Number of records to batch before sending.
spring.kafka.producer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
spring.kafka.producer.buffer-memory= # Total bytes of memory the producer can use to buffer records waiting to be sent to the server.
spring.kafka.producer.client-id= # Id to pass to the server when making requests; used for server-side logging.
spring.kafka.producer.compression-type= # Compression type for all data generated by the producer.
spring.kafka.producer.key-serializer= # Serializer class for keys.
spring.kafka.producer.retries= # When greater than zero, enables retrying of failed sends.
spring.kafka.producer.value-serializer= # Serializer class for values.
spring.kafka.properties.*= # Additional properties used to configure the client.
spring.kafka.ssl.key-password= # Password of the private key in the key store file.
spring.kafka.ssl.keystore-location= # Location of the key store file.
spring.kafka.ssl.keystore-password= # Store password for the key store file.
spring.kafka.ssl.truststore-location= # Location of the trust store file.
spring.kafka.ssl.truststore-password= # Store password for the trust store file.
spring.kafka.template.default-topic= # Default topic to which messages will be sent.

# RABBIT (RabbitProperties)
spring.rabbitmq.addresses= # Comma-separated list of addresses to which the client should connect.
spring.rabbitmq.cache.channel.checkout-timeout= # Number of milliseconds to wait to obtain a channel if the cache size has been reached.
spring.rabbitmq.cache.channel.size= # Number of channels to retain in the cache.
spring.rabbitmq.cache.connection.mode=channel # Connection factory cache mode.
spring.rabbitmq.cache.connection.size= # Number of connections to cache.
spring.rabbitmq.connection-timeout= # Connection timeout, in milliseconds; zero for infinite.
spring.rabbitmq.dynamic=true # Create an AmqpAdmin bean.
spring.rabbitmq.host=localhost # RabbitMQ host.
spring.rabbitmq.listener.simple.acknowledge-mode= # Acknowledge mode of container.
spring.rabbitmq.listener.simple.auto-startup=true # Start the container automatically on startup.
spring.rabbitmq.listener.simple.concurrency= # Minimum number of consumers.
spring.rabbitmq.listener.simple.default-requeue-rejected= # Whether or not to requeue delivery failures; default `true`.
spring.rabbitmq.listener.simple.idle-event-interval= # How often idle container events should be published in milliseconds.
spring.rabbitmq.listener.simple.max-concurrency= # Maximum number of consumers.
spring.rabbitmq.listener.simple.prefetch= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).
spring.rabbitmq.listener.simple.retry.enabled=false # Whether or not publishing retries are enabled.
spring.rabbitmq.listener.simple.retry.initial-interval=1000 # Interval between the first and second attempt to deliver a message.
spring.rabbitmq.listener.simple.retry.max-attempts=3 # Maximum number of attempts to deliver a message.
spring.rabbitmq.listener.simple.retry.max-interval=10000 # Maximum interval between attempts.
spring.rabbitmq.listener.simple.retry.multiplier=1.0 # A multiplier to apply to the previous delivery retry interval.
spring.rabbitmq.listener.simple.retry.stateless=true # Whether or not retry is stateless or stateful.
spring.rabbitmq.listener.simple.transaction-size= # Number of messages to be processed in a transaction. For best results it should be less than or equal to the prefetch count.
spring.rabbitmq.password= # Login to authenticate against the broker.
spring.rabbitmq.port=5672 # RabbitMQ port.
spring.rabbitmq.publisher-confirms=false # Enable publisher confirms.
spring.rabbitmq.publisher-returns=false # Enable publisher returns.
spring.rabbitmq.requested-heartbeat= # Requested heartbeat timeout, in seconds; zero for none.
spring.rabbitmq.ssl.enabled=false # Enable SSL support.
spring.rabbitmq.ssl.key-store= # Path to the key store that holds the SSL certificate.
spring.rabbitmq.ssl.key-store-password= # Password used to access the key store.
spring.rabbitmq.ssl.trust-store= # Trust store that holds SSL certificates.
spring.rabbitmq.ssl.trust-store-password= # Password used to access the trust store.
spring.rabbitmq.ssl.algorithm= # SSL algorithm to use. By default configure by the rabbit client library.
spring.rabbitmq.template.mandatory=false # Enable mandatory messages.
spring.rabbitmq.template.receive-timeout=0 # Timeout for `receive()` methods.
spring.rabbitmq.template.reply-timeout=5000 # Timeout for `sendAndReceive()` methods.
spring.rabbitmq.template.retry.enabled=false # Set to true to enable retries in the `RabbitTemplate`.
spring.rabbitmq.template.retry.initial-interval=1000 # Interval between the first and second attempt to publish a message.
spring.rabbitmq.template.retry.max-attempts=3 # Maximum number of attempts to publish a message.
spring.rabbitmq.template.retry.max-interval=10000 # Maximum number of attempts to publish a message.
spring.rabbitmq.template.retry.multiplier=1.0 # A multiplier to apply to the previous publishing retry interval.
spring.rabbitmq.username= # Login user to authenticate to the broker.
spring.rabbitmq.virtual-host= # Virtual host to use when connecting to the broker.


# ----------------------------------------
# ACTUATOR PROPERTIES
# ----------------------------------------

# ENDPOINTS (AbstractEndpoint subclasses)
endpoints.enabled=true # Enable endpoints.
endpoints.sensitive= # Default endpoint sensitive setting.
endpoints.actuator.enabled=true # Enable the endpoint.
endpoints.actuator.path= # Endpoint URL path.
endpoints.actuator.sensitive=false # Enable security on the endpoint.
endpoints.auditevents.enabled= # Enable the endpoint.
endpoints.auditevents.path= # Endpoint path.
endpoints.auditevents.sensitive=false # Enable security on the endpoint.
endpoints.autoconfig.enabled= # Enable the endpoint.
endpoints.autoconfig.id= # Endpoint identifier.
endpoints.autoconfig.path= # Endpoint path.
endpoints.autoconfig.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.beans.enabled= # Enable the endpoint.
endpoints.beans.id= # Endpoint identifier.
endpoints.beans.path= # Endpoint path.
endpoints.beans.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.configprops.enabled= # Enable the endpoint.
endpoints.configprops.id= # Endpoint identifier.
endpoints.configprops.keys-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.
endpoints.configprops.path= # Endpoint path.
endpoints.configprops.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.docs.curies.enabled=false # Enable the curie generation.
endpoints.docs.enabled=true # Enable actuator docs endpoint.
endpoints.docs.path=/docs #
endpoints.docs.sensitive=false #
endpoints.dump.enabled= # Enable the endpoint.
endpoints.dump.id= # Endpoint identifier.
endpoints.dump.path= # Endpoint path.
endpoints.dump.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.env.enabled= # Enable the endpoint.
endpoints.env.id= # Endpoint identifier.
endpoints.env.keys-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.
endpoints.env.path= # Endpoint path.
endpoints.env.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.flyway.enabled= # Enable the endpoint.
endpoints.flyway.id= # Endpoint identifier.
endpoints.flyway.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.health.enabled= # Enable the endpoint.
endpoints.health.id= # Endpoint identifier.
endpoints.health.mapping.*= # Mapping of health statuses to HTTP status codes. By default, registered health statuses map to sensible defaults (i.e. UP maps to 200).
endpoints.health.path= # Endpoint path.
endpoints.health.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.health.time-to-live=1000 # Time to live for cached result, in milliseconds.
endpoints.heapdump.enabled= # Enable the endpoint.
endpoints.heapdump.path= # Endpoint path.
endpoints.heapdump.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.hypermedia.enabled=false # Enable hypermedia support for endpoints.
endpoints.info.enabled= # Enable the endpoint.
endpoints.info.id= # Endpoint identifier.
endpoints.info.path= # Endpoint path.
endpoints.info.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.jolokia.enabled=true # Enable Jolokia endpoint.
endpoints.jolokia.path=/jolokia # Endpoint URL path.
endpoints.jolokia.sensitive=true # Enable security on the endpoint.
endpoints.liquibase.enabled= # Enable the endpoint.
endpoints.liquibase.id= # Endpoint identifier.
endpoints.liquibase.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.logfile.enabled=true # Enable the endpoint.
endpoints.logfile.external-file= # External Logfile to be accessed.
endpoints.logfile.path=/logfile # Endpoint URL path.
endpoints.logfile.sensitive=true # Enable security on the endpoint.
endpoints.loggers.enabled=true # Enable the endpoint.
endpoints.loggers.id= # Endpoint identifier.
endpoints.loggers.path=/logfile # Endpoint path.
endpoints.loggers.sensitive=true # Mark if the endpoint exposes sensitive information.
endpoints.mappings.enabled= # Enable the endpoint.
endpoints.mappings.id= # Endpoint identifier.
endpoints.mappings.path= # Endpoint path.
endpoints.mappings.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.metrics.enabled= # Enable the endpoint.
endpoints.metrics.filter.enabled=true # Enable the metrics servlet filter.
endpoints.metrics.filter.gauge-submissions=merged # Http filter gauge submissions (merged, per-http-method)
endpoints.metrics.filter.counter-submissions=merged # Http filter counter submissions (merged, per-http-method)
endpoints.metrics.id= # Endpoint identifier.
endpoints.metrics.path= # Endpoint path.
endpoints.metrics.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.shutdown.enabled= # Enable the endpoint.
endpoints.shutdown.id= # Endpoint identifier.
endpoints.shutdown.path= # Endpoint path.
endpoints.shutdown.sensitive= # Mark if the endpoint exposes sensitive information.
endpoints.trace.enabled= # Enable the endpoint.
endpoints.trace.filter.enabled=true # Enable the trace servlet filter.
endpoints.trace.id= # Endpoint identifier.
endpoints.trace.path= # Endpoint path.
endpoints.trace.sensitive= # Mark if the endpoint exposes sensitive information.

# ENDPOINTS CORS CONFIGURATION (EndpointCorsProperties)
endpoints.cors.allow-credentials= # Set whether credentials are supported. When not set, credentials are not supported.
endpoints.cors.allowed-headers= # Comma-separated list of headers to allow in a request. '*' allows all headers.
endpoints.cors.allowed-methods=GET # Comma-separated list of methods to allow. '*' allows all methods.
endpoints.cors.allowed-origins= # Comma-separated list of origins to allow. '*' allows all origins. When not set, CORS support is disabled.
endpoints.cors.exposed-headers= # Comma-separated list of headers to include in a response.
endpoints.cors.max-age=1800 # How long, in seconds, the response from a pre-flight request can be cached by clients.

# JMX ENDPOINT (EndpointMBeanExportProperties)
endpoints.jmx.domain= # JMX domain name. Initialized with the value of 'spring.jmx.default-domain' if set.
endpoints.jmx.enabled=true # Enable JMX export of all endpoints.
endpoints.jmx.static-names= # Additional static properties to append to all ObjectNames of MBeans representing Endpoints.
endpoints.jmx.unique-names=false # Ensure that ObjectNames are modified in case of conflict.

# JOLOKIA (JolokiaProperties)
jolokia.config.*= # See Jolokia manual

# MANAGEMENT HTTP SERVER (ManagementServerProperties)
management.add-application-context-header=true # Add the "X-Application-Context" HTTP header in each response.
management.address= # Network address that the management endpoints should bind to.
management.context-path= # Management endpoint context-path. For instance `/actuator`
management.cloudfoundry.enabled= # Enable extended Cloud Foundry actuator endpoints
management.cloudfoundry.skip-ssl-validation= # Skip SSL verification for Cloud Foundry actuator endpoint security calls
management.port= # Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL.
management.security.enabled=true # Enable security.
management.security.roles=ACTUATOR # Comma-separated list of roles that can access the management endpoint.
management.security.sessions=stateless # Session creating policy to use (always, never, if_required, stateless).
management.ssl.ciphers= # Supported SSL ciphers. Requires a custom management.port.
management.ssl.client-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store. Requires a custom management.port.
management.ssl.enabled= # Enable SSL support. Requires a custom management.port.
management.ssl.enabled-protocols= # Enabled SSL protocols. Requires a custom management.port.
management.ssl.key-alias= # Alias that identifies the key in the key store. Requires a custom management.port.
management.ssl.key-password= # Password used to access the key in the key store. Requires a custom management.port.
management.ssl.key-store= # Path to the key store that holds the SSL certificate (typically a jks file). Requires a custom management.port.
management.ssl.key-store-password= # Password used to access the key store. Requires a custom management.port.
management.ssl.key-store-provider= # Provider for the key store. Requires a custom management.port.
management.ssl.key-store-type= # Type of the key store. Requires a custom management.port.
management.ssl.protocol=TLS # SSL protocol to use. Requires a custom management.port.
management.ssl.trust-store= # Trust store that holds SSL certificates. Requires a custom management.port.
management.ssl.trust-store-password= # Password used to access the trust store. Requires a custom management.port.
management.ssl.trust-store-provider= # Provider for the trust store. Requires a custom management.port.
management.ssl.trust-store-type= # Type of the trust store. Requires a custom management.port.

# HEALTH INDICATORS
management.health.db.enabled=true # Enable database health check.
management.health.cassandra.enabled=true # Enable cassandra health check.
management.health.couchbase.enabled=true # Enable couchbase health check.
management.health.defaults.enabled=true # Enable default health indicators.
management.health.diskspace.enabled=true # Enable disk space health check.
management.health.diskspace.path= # Path used to compute the available disk space.
management.health.diskspace.threshold=0 # Minimum disk space that should be available, in bytes.
management.health.elasticsearch.enabled=true # Enable elasticsearch health check.
management.health.elasticsearch.indices= # Comma-separated index names.
management.health.elasticsearch.response-timeout=100 # The time, in milliseconds, to wait for a response from the cluster.
management.health.jms.enabled=true # Enable JMS health check.
management.health.ldap.enabled=true # Enable LDAP health check.
management.health.mail.enabled=true # Enable Mail health check.
management.health.mongo.enabled=true # Enable MongoDB health check.
management.health.rabbit.enabled=true # Enable RabbitMQ health check.
management.health.redis.enabled=true # Enable Redis health check.
management.health.solr.enabled=true # Enable Solr health check.
management.health.status.order=DOWN, OUT_OF_SERVICE, UP, UNKNOWN # Comma-separated list of health statuses in order of severity.

# INFO CONTRIBUTORS (InfoContributorProperties)
management.info.build.enabled=true # Enable build info.
management.info.defaults.enabled=true # Enable default info contributors.
management.info.env.enabled=true # Enable environment info.
management.info.git.enabled=true # Enable git info.
management.info.git.mode=simple # Mode to use to expose git information.

# REMOTE SHELL (ShellProperties)
management.shell.auth.type=simple # Authentication type. Auto-detected according to the environment.
management.shell.auth.jaas.domain=my-domain # JAAS domain.
management.shell.auth.key.path= # Path to the authentication key. This should point to a valid ".pem" file.
management.shell.auth.simple.user.name=user # Login user.
management.shell.auth.simple.user.password= # Login password.
management.shell.auth.spring.roles=ACTUATOR # Comma-separated list of required roles to login to the CRaSH console.
management.shell.command-path-patterns=classpath*:/commands/**,classpath*:/crash/commands/** # Patterns to use to look for commands.
management.shell.command-refresh-interval=-1 # Scan for changes and update the command if necessary (in seconds).
management.shell.config-path-patterns=classpath*:/crash/* # Patterns to use to look for configurations.
management.shell.disabled-commands=jpa*,jdbc*,jndi* # Comma-separated list of commands to disable.
management.shell.disabled-plugins= # Comma-separated list of plugins to disable. Certain plugins are disabled by default based on the environment.
management.shell.ssh.auth-timeout = # Number of milliseconds after user will be prompted to login again.
management.shell.ssh.enabled=true # Enable CRaSH SSH support.
management.shell.ssh.idle-timeout = # Number of milliseconds after which unused connections are closed.
management.shell.ssh.key-path= # Path to the SSH server key.
management.shell.ssh.port=2000 # SSH port.
management.shell.telnet.enabled=false # Enable CRaSH telnet support. Enabled by default if the TelnetPlugin is available.
management.shell.telnet.port=5000 # Telnet port.

# TRACING (TraceProperties)
management.trace.include=request-headers,response-headers,cookies,errors # Items to be included in the trace.

# METRICS EXPORT (MetricExportProperties)
spring.metrics.export.aggregate.key-pattern= # Pattern that tells the aggregator what to do with the keys from the source repository.
spring.metrics.export.aggregate.prefix= # Prefix for global repository if active.
spring.metrics.export.delay-millis=5000 # Delay in milliseconds between export ticks. Metrics are exported to external sources on a schedule with this delay.
spring.metrics.export.enabled=true # Flag to enable metric export (assuming a MetricWriter is available).
spring.metrics.export.excludes= # List of patterns for metric names to exclude. Applied after the includes.
spring.metrics.export.includes= # List of patterns for metric names to include.
spring.metrics.export.redis.key=keys.spring.metrics # Key for redis repository export (if active).
spring.metrics.export.redis.prefix=spring.metrics # Prefix for redis repository if active.
spring.metrics.export.send-latest= # Flag to switch off any available optimizations based on not exporting unchanged metric values.
spring.metrics.export.statsd.host= # Host of a statsd server to receive exported metrics.
spring.metrics.export.statsd.port=8125 # Port of a statsd server to receive exported metrics.
spring.metrics.export.statsd.prefix= # Prefix for statsd exported metrics.
spring.metrics.export.triggers.*= # Specific trigger properties per MetricWriter bean name.


# ----------------------------------------
# DEVTOOLS PROPERTIES
# ----------------------------------------

# DEVTOOLS (DevToolsProperties)
spring.devtools.livereload.enabled=true # Enable a livereload.com compatible server.
spring.devtools.livereload.port=35729 # Server port.
spring.devtools.restart.additional-exclude= # Additional patterns that should be excluded from triggering a full restart.
spring.devtools.restart.additional-paths= # Additional paths to watch for changes.
spring.devtools.restart.enabled=true # Enable automatic restart.
spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties # Patterns that should be excluded from triggering a full restart.
spring.devtools.restart.poll-interval=1000 # Amount of time (in milliseconds) to wait between polling for classpath changes.
spring.devtools.restart.quiet-period=400 # Amount of quiet time (in milliseconds) required without any classpath changes before a restart is triggered.
spring.devtools.restart.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)
spring.devtools.remote.context-path=/.~~spring-boot!~ # Context path used to handle the remote connection.
spring.devtools.remote.debug.enabled=true # Enable remote debug support.
spring.devtools.remote.debug.local-port=8000 # Local remote debug server port.
spring.devtools.remote.proxy.host= # The host of the proxy to use to connect to the remote application.
spring.devtools.remote.proxy.port= # The port of the proxy to use to connect to the remote application.
spring.devtools.remote.restart.enabled=true # Enable remote restart.
spring.devtools.remote.secret= # A shared secret required to establish a connection (required to enable remote support).
spring.devtools.remote.secret-header-name=X-AUTH-TOKEN # HTTP header used to transfer the shared secret.


# ----------------------------------------
# TESTING PROPERTIES
# ----------------------------------------

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



#================================================= ==================  

#共同spring boot特性  

#  

#此示例文件做爲指導提供。不要在其中複製它  

#完整到您本身的應用程序。^^^  

#================================================= ==================  

  

  

#----------------------------------------  

#核心屬性  

#----------------------------------------  

  

#BANNER  

banner.charset = UTF-8#橫幅文件編碼。  

banner.location = classpath:banner.txt#橫幅文件位置。  

  

#記錄  

logging.config =#日誌配置文件的位置。例如Logback的`classpath:logback.xml`  

logging.exception-conversion-word =%wEx#記錄異常時使用的轉換字。  

logging.file =#記錄文件名稱。例如`myapp.log`  

logging.level。* =#日誌級別嚴重性映射。例如`logging.level.org.springframework = DEBUG`  

logging.path =#日誌文件的位置。例如`/ var / log`  

logging.pattern.console =#輸出到控制檯的Appender模式。僅支持默認的登陸設置。  

logging.pattern.file =#輸出到文件的Appender模式。僅支持默認的登陸設置。  

logging.pattern.level =#日誌級別的Appender模式(默認%5p)。僅支持默認的登陸設置。  

logging.register-shutdown-hook = false#爲日誌記錄系統初始化時註冊一個關閉鉤子。  

  

#AOP  

spring.aop.auto = true#添加@EnableAspectJAutoProxy。  

spring.aop.proxy-target-class = false#與基於Java接口的標準代理(false)相比,是否建立基於子類的(CGLIB)代理(true)。  

  

#IDENTITY(ContextIdApplicationContextInitializer)  

spring.application.index =#應用程序索引。  

spring.application.name =#應用程序名稱。  

  

#ADMIN(SpringApplicationAdminJmxAutoConfiguration)  

spring.application.admin.enabled = false#爲應用程序啓用管理功能。  

spring.application.admin.jmx-name = org.springframework.boot:type = Admin,name = SpringApplication#JMX應用程序的名稱admin MBean。  

  

#自動配置  

spring.autoconfigure.exclude =#要排除的自動配置類。  

  

#彈簧芯  

spring.beaninfo.ignore = true#跳過對BeanInfo類的搜索。  

  

#SPRING CACHE(CacheProperties)  

spring.cache.cache-names =#若是基礎高速緩存管理器支持,將建立緩存名稱的逗號分隔列表。  

spring.cache.ehcache.config =#用於初始化EhCache的配置文件的位置。  

spring.cache.guava.spec =#用於建立緩存的規範。檢查CacheBuilderSpec以獲取有關spec格式的更多詳細信息。  

spring.cache.hazelcast.config =#用於初始化Hazelcast的配置文件的位置。  

spring.cache.infinispan.config =#用於初始化Infinispan的配置文件的位置。  

spring.cache.jcache.config =#用於初始化緩存管理器的配置文件的位置。  

spring.cache.jcache.provider =#用於檢索符合JSR-107的緩存管理器的CachingProvider實現的徹底限定名稱。只有在類路徑中有多個JSR-107實現可用時才須要。  

spring.cache.type =#緩存類型,默認根據環境自動檢測。  

  

#SPRING CONFIG - 僅使用環境屬性(ConfigFileApplicationListener)  

spring.config.location =#配置文件位置。  

spring.config.name = application#配置文件名。  

  

#HAZELCAST(HazelcastProperties)  

spring.hazelcast.config =#用於初始化Hazelcast的配置文件的位置。  

  

#JMX  

spring.jmx.default-domain =#JMX域名。  

spring.jmx.enabled = true#將管理bean展現給JMX域。  

spring.jmx.server = mbeanServer#MBeanServer bean名稱。  

  

#電子郵件(MailProperties)  

spring.mail.default-encoding = UTF-8#默認MimeMessage編碼。  

spring.mail.host =#SMTP服務器主機。例如`smtp.example.com`  

spring.mail.jndi-name =#會話JNDI名稱。設置時,優先於其餘郵件設置。  

spring.mail.password =#登陸SMTP服務器的密碼。  

spring.mail.port =#SMTP服務器端口。  

spring.mail.properties。* =#其餘JavaMail會話屬性。  

spring.mail.protocol = smtp#SMTP服務器使用的協議。  

spring.mail.test-connection = false#測試郵件服務器在啓動時是否可用。  

spring.mail.username =#登陸SMTP服務器的用戶。  

  

#應用程序設置(SpringApplication)  

spring.main.banner-mode = console#用於在應用程序運行時顯示橫幅的模式。  

spring.main.sources =#要包含在ApplicationContext中的源(類名,包名或XML資源位置)。  

spring.main.web-environment =#在Web環境中運行應用程序(默認爲自動檢測)。  

  

#FILE ENCODING(FileEncodingApplicationListener)  

spring.mandatory-file-encoding =#應用程序必須使用的預期字符編碼。  

  

#國際化(MessageSourceAutoConfiguration)  

spring.messages.basename = messages#逗號分隔的基本名稱列表,每一個都遵循ResourceBundle約定。  

spring.messages.cache-seconds = -1#加載資源包文件緩存過時,以秒爲單位。設置爲-1時,捆綁包將永久緩存。  

spring.messages.encoding = UTF-8#消息包編碼。  

spring.messages.fallback-to-system-locale = true#若是未找到特定語言環境的文件,則設置是否回退到系統區域設置。  

  

#輸出  

spring.output.ansi.enabled = detect#配置ANSI輸出(能夠是「detect」,「always」,「never」)。  

  

#PID文件(ApplicationPidFileWriter)  

spring.pid.fail-on-write-error =#若是使用ApplicationPidFileWriter,則失敗,但不能寫入PID文件。  

spring.pid.file =#要寫入的PID文件的位置(若是使用ApplicationPidFileWriter)。  

  

#我的資料  

spring.profiles.active =#逗號分隔的活動配置文件列表。  

spring.profiles.include =#無條件激活指定的逗號分隔的配置文件。  

  

#SENDGRID(SendGridAutoConfiguration)  

spring.sendgrid.username =#SendGrid賬戶用戶名  

spring.sendgrid.password =#SendGrid賬號密碼  

spring.sendgrid.proxy.host =#SendGrid代理主機  

spring.sendgrid.proxy.port =#SendGrid代理端口  

  

  

#----------------------------------------  

#網絡屬性  

#----------------------------------------  

  

#MULTIPART(多部分屬性)  

multipart.enabled = true#啓用對多部分上傳的支持。  

multipart.file-size-threshold = 0#文件將寫入磁盤以後的閾值。值可使用後綴「MB」或「KB」來表示兆字節或千字節大小。  

multipart.location =#上傳文件的中間位置。  

multipart.max-file-size = 1Mb#最大文件大小。值可使用後綴「MB」或「KB」來表示兆字節或千字節大小。  

multipart.max-request-size = 10Mb#最大請求大小。值可使用後綴「MB」或「KB」來表示兆字節或千字節大小。  

  

#嵌入式服務器配置(ServerProperties)  

server.address =#服務器應綁定到的網絡地址。  

server.compression.enabled = false#若是啓用了響應壓縮。  

server.compression.excluded-user-agents =#要從壓縮中排除的用戶代理列表。  

server.compression.mime-types =#應該壓縮的MIME類型的逗號分隔列表。例如`text / html,text / css,application / json`  

server.compression.min-response-size =#要執行壓縮所需的最小響應大小。例如2048  

server.context-parameters。* =#Servlet上下文初始化參數。例如`server.context-parameters.a = alpha`  

server.context-path =#應用程序的上下文路徑。  

server.display-name = application#顯示應用程序的名稱。  

server.error.include-stacktrace = never#什麼時候包含「stacktrace」屬性。  

server.error.path = / error#錯誤控制器的路徑。  

server.error.whitelabel.enabled = true#在服務器錯誤的狀況下,啓用瀏覽器中顯示的默認錯誤頁面。  

server.jsp-servlet.class-name = org.apache.jasper.servlet.JspServlet#JSP servlet的類名稱。  

server.jsp-servlet.init-parameters。* =#用於配置JSP servlet的初始參數  

server.jsp-servlet.registered = true#JSP servlet是否已註冊  

server.port = 8080#服務器HTTP端口。  

server.server-header =#服務器響應頭中發送的值(若是爲空,則使用servlet容器默認值)  

server.servlet-path = /#主調度程序servlet的路徑。  

server.session.cookie.comment =#會話cookie的註釋。  

server.session.cookie.domain =#會話cookie的域名。  

server.session.cookie.http-only =#會話cookie的「HttpOnly」標誌。  

server.session.cookie.max-age =#以秒爲單位的會話cookie的最大時間。  

server.session.cookie.name =#會話cookie名稱。  

server.session.cookie.path =#會話cookie的路徑。  

server.session.cookie.secure =#會話cookie的「安全」標誌。  

server.session.persistent = false#在從新啓動之間保留會話數據。  

server.session.store-dir =#用於存儲會話數據的目錄。  

server.session.timeout =#以秒爲單位的會話超時。  

server.session.tracking-modes =#會話跟蹤模式(如下一項或多項:「cookie」,「url」,「ssl」)。  

server.ssl.ciphers =#支持的SSL密碼。  

server.ssl.client-auth =#是否須要客戶端身份驗證(「須要」)或須要(「須要」)。須要信任商店。  

server.ssl.enabled =#  

server.ssl.key-alias =#  

server.ssl.key-password =#  

server.ssl.key-store =#  

server.ssl.key-store-password =#  

server.ssl.key-store-provider =#  

server.ssl.key-store-type =#  

server.ssl.protocol =#  

server.ssl.trust-store =#  

server.ssl.trust-store-password =#  

server.ssl.trust-store-provider =#  

server.ssl.trust-store-type =#  

server.tomcat.accesslog.directory = logs#建立日誌文件的目錄。能夠相對於tomcat的基本目錄或絕對。  

server.tomcat.accesslog.enabled = false#啓用訪問日誌。  

server.tomcat.accesslog.pattern = common#訪問日誌的格式模式。  

server.tomcat.accesslog.prefix = access_log#記錄文件名前綴。  

server.tomcat.accesslog.suffix = .log#日誌文件名後綴。  

server.tomcat.background-processor-delay = 30#調用backgroundProcess方法之間的延遲(秒)。  

server.tomcat.basedir =#Tomcat基本目錄。若是未指定,則將使用臨時目錄。  

server.tomcat.internal-proxies= 10 \\ d {1,3} \\ d {1,3} \\ d {1,3} | \\  

        。192 \\ 168 \\ d {1,3} \\ d {1,3} | \\  

        。169 \\ 254 \\ d {1,3} \\ d {1,3} | \\  

        。127 \\ d {1,3} \\ d {1,3} \\ d {1,3} | \\  

        172 \\ 1 [6-9] {1} \\ d {1,3} \\ d {1,3} |。。\\  

        172 \\ 2 [0-9] {1} \\ d {1,3} \\ d {1,3} |。。\\  

        172 \\。3 [0-1] {1} \\。\\ d {1,3} \\。\\ d {1,3}#匹配可信IP地址的正則表達式。  

server.tomcat.max-http-header-size = 0#HTTP消息頭的最大字節數。  

server.tomcat.max-threads = 0#工做線程的最大數量。  

server.tomcat.port-header = X-Forwarded-Port#用於覆蓋原始端口值的HTTP標頭的名稱。  

server.tomcat.protocol-header =#保存傳入協議的頭部,一般名爲「X-Forwarded-Proto」。  

server.tomcat.protocol-header-https-value = https#指示傳入請求使用SSL的協議頭的值。  

server.tomcat.remote-ip-header =#從中提取遠程IP的http頭的名稱。例如`X-FORWARDED-FOR`  

server.tomcat.uri-encoding = UTF-8#用於解碼URI的字符編碼。  

server.undertow.accesslog.dir =#取消訪問日誌目錄。  

server.undertow.accesslog.enabled = false#啓用訪問日誌。  

server.undertow.accesslog.pattern = common#訪問日誌的格式模式。  

server.undertow.buffer-size =#每一個緩衝區的大小(以字節爲單位)。  

server.undertow.buffers-per-region =#每一個區域的緩衝區數量。  

server.undertow.direct-buffers =#在Java堆外分配緩衝區。  

server.undertow.io-threads =#爲worker建立的I / O線程數量。  

server.undertow.worker-threads =#工做線程數。  

server.use-forward-headers =#若是X-Forwarded- *標頭應該應用於HttpRequest。  

  

#FREEMARKER(FreeMarkerAutoConfiguration)  

spring.freemarker.allow-request-override = false#設置是否容許HttpServletRequest屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。  

spring.freemarker.allow-session-override = false#設置是否容許HttpSession屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。  

spring.freemarker.cache = false#啓用模板緩存。  

spring.freemarker.charset = UTF-8#模板編碼。  

spring.freemarker.check-template-location = true#檢查模板位置是否存在。  

spring.freemarker.content-type = text / html#Content-Type值。  

spring.freemarker.enabled = true#爲此技術啓用MVC視圖分辨率。  

spring.freemarker.expose-request-attributes = false#設置在與模板合併以前是否應將全部請求屬性添加到模型中。  

spring.freemarker.expose-session-attributes = false#設置在與模板合併以前是否應將全部HttpSession屬性添加到模型中。  

spring.freemarker.expose-spring-macro-helpers = true#設置是否公開名爲「springMacroRequestContext」的供Spring的宏庫使用的RequestContext。  

spring.freemarker.prefer-file-system-access = true#優先選擇模板加載的文件系統訪問權限。文件系統訪問使模板更改的熱檢測成爲可能。  

spring.freemarker.prefix =#構建URL時預先查看名稱的前綴。  

spring.freemarker.request-context-attribute =#全部視圖的RequestContext屬性的名稱。  

spring.freemarker.settings.* =#衆所周知的FreeMarker鍵將被傳遞給FreeMarker的配置。  

spring.freemarker.suffix =#在構建URL時被附加到查看名稱的後綴。  

spring.freemarker.template-loader-path = classpath:/ templates /#逗號分隔的模板路徑列表。  

spring.freemarker.view-names =#能夠解析的視圖名稱的白名單。  

  

#GROOVY模板(GroovyTemplateAutoConfiguration)  

spring.groovy.template.allow-request-override = false#設置是否容許HttpServletRequest屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。  

spring.groovy.template.allow-session-override = false#設置是否容許HttpSession屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。  

spring.groovy.template.cache =#啓用模板緩存。  

spring.groovy.template.charset = UTF-8#模板編碼。  

spring.groovy.template.check-template-location = true#檢查模板位置是否存在。  

spring.groovy.template.configuration。* =#請參閱GroovyMarkupConfigurer  

spring.groovy.template.content-type = test / html#Content-Type值。  

spring.groovy.template.enabled = true#爲此技術啓用MVC視圖分辨率。  

spring.groovy.template.expose-request-attributes = false#設置在與模板合併以前是否應將全部請求屬性添加到模型中。  

spring.groovy.template.expose-session-attributes = false#設置在與模板合併以前是否應將全部HttpSession屬性添加到模型中。  

spring.groovy.template.expose-spring-macro-helpers = true#設置是否公開一個供Spring的宏庫使用的名爲「springMacroRequestContext」的RequestContext。  

spring.groovy.template.prefix =#構建URL時預先查看名稱的前綴。  

spring.groovy.template.request-context-attribute =#全部視圖的RequestContext屬性的名稱。  

spring.groovy.template.resource-loader-path = classpath:/ templates /#模板路徑。  

spring.groovy.template.suffix = .tpl#在構建URL時被附加到視圖名稱後綴。  

spring.groovy.template.view-names =#能夠解析的視圖名稱的白名單。  

  

#春天HATEOAS(Hateoas屬性)  

spring.hateoas.use-hal-as-default-json-media-type = true#指定應用程序/ hal + json響應是否應發送到接受application / json的請求。  

  

#HTTP消息轉換  

spring.http.converters.preferred-json-mapper = jackson#用於HTTP消息轉換的首選JSON映射器。設置爲「gson」來強制使用Gson,當它和Jackson都在類路徑中時。  

  

#HTTP編碼(HttpEncodingProperties)  

spring.http.encoding.charset = UTF-8#HTTP請求和響應的字符集。若是未明確設置,則添加到「Content-Type」標題中。  

spring.http.encoding.enabled = true#啓用http編碼支持。  

spring.http.encoding.force = true#強制編碼到HTTP請求和響應上配置的字符集。  

  

#傑克遜(JacksonProperties)  

spring.jackson.date-format =#日期格式字符串或徹底合格的日期格式類名稱。例如`yyyy-MM-dd HH:mm:ss`。  

spring.jackson.deserialization。* =#傑克遜開/關功能,影響Java對象反序列化的方式。  

spring.jackson.generator。* =#生成器的Jackson開/關功能。  

spring.jackson.joda-date-time-format =#喬達日期時間格式字符串。若是未配置,若是使用格式字符串配置,則將使用「日期格式」做爲後備。  

spring.jackson.locale =#用於格式化的區域設置。  

spring.jackson.mapper。* =#傑克遜通用開/關功能。  

spring.jackson.parser。* =#解析器的Jackson開/關功能。  

spring.jackson.property-naming-strategy =#Jackson的PropertyNamingStrategy上的常量之一。也能夠是PropertyNamingStrategy子類的徹底限定類名。  

spring.jackson.serialization。* =#傑克遜開/關功能,影響Java對象序列化的方式。  

spring.jackson.serialization-inclusion =#在序列化過程當中控制屬性的包含。使用Jackson的JsonInclude.Include枚舉中的一個值進行配置。  

spring.jackson.time-zone =#格式化日期時使用的時區。例如`America / Los_Angeles`  

  

#澤西(JerseyProperties)  

spring.jersey.application-path =#做爲應用程序的基本URI的路徑。若是指定,則覆蓋「@ApplicationPath」的值。  

spring.jersey.filter.order = 0#Jersey過濾器鏈順序。  

spring.jersey.init。* =#初始化參數經過servlet或過濾器傳遞給Jersey。  

spring.jersey.type = servlet#Jersey集成類型。能夠是「servlet」或「filter」。  

  

#SPRING MOBILE DEVICE VIEWS(DeviceDelegatingViewResolverAutoConfiguration)  

spring.mobile.devicedelegatingviewresolver.enable-fallback = false#啓用對回退解析的支持。  

spring.mobile.devicedelegatingviewresolver.enabled = false#啓用設備視圖解析器。  

spring.mobile.devicedelegatingviewresolver.mobile-prefix = mobile /#預設爲查看移動設備名稱的前綴。  

spring.mobile.devicedelegatingviewresolver.mobile-suffix =#附加到移動設備視圖名稱的後綴。  

spring.mobile.devicedelegatingviewresolver.normal-prefix =#用於查看普通設備名稱的前綴。  

spring.mobile.devicedelegatingviewresolver.normal-suffix =#附加到正常設備的視圖名稱後綴。  

spring.mobile.devicedelegatingviewresolver.tablet-prefix = tablet /#預設爲查看平板設備名稱的前綴。  

spring.mobile.devicedelegatingviewresolver.tablet-suffix =#附加到平板設備的查看名稱的後綴。  

  

#SPRING MOBILE SITE PREFERENCE(SitePreferenceAutoConfiguration)  

spring.mobile.sitepreference.enabled = true#啓用SitePreferenceHandler。  

  

#MUSTACHE模板(MustacheAutoConfiguration)  

spring.mustache.cache = false#啓用模板緩存。  

spring.mustache.charset = UTF-8#模板編碼。  

spring.mustache.check-template-location = true#檢查模板位置是否存在。  

spring.mustache.content-type = text / html#Content-Type值。  

spring.mustache.enabled = true#啓用此技術的MVC視圖分辨率。  

spring.mustache.prefix = classpath:/ templates /#應用於模板名稱的前綴。  

spring.mustache.suffix = .html#應用於模板名稱的後綴。  

spring.mustache.view-names =#能夠解析的視圖名稱的白名單。  

  

#SPRING MVC(WebMvcProperties)  

spring.mvc.async.request-timeout =#異步請求處理超時以前的時間(以毫秒爲單位)。  

spring.mvc.date-format =#要使用的日期格式。例如`dd / MM / yyyy`。  

spring.mvc.dispatch-trace-request = false#將TRACE請求分派給FrameworkServlet doService方法。  

spring.mvc.dispatch-options-request = false#將OPTIONS請求分派給FrameworkServlet的doService方法。  

spring.mvc.favicon.enabled = true#啓用favicon.ico的解析。  

spring.mvc.formcontent.putfilter.enabled = true#啓用Spring的HttpPutFormContentFilter。  

spring.mvc.ignore-default-model-on-redirect = true#若是在重定向場景中應忽略「默認」模型的內容。  

spring.mvc.locale =#使用的語言環境。  

spring.mvc.media-types。* =#將文件擴展名映射到媒體類型以進行內容協商。  

spring.mvc.message-codes-resolver-format =#消息代碼的格式化策略。例如`PREFIX_ERROR_CODE`。  

spring.mvc.static-path-pattern = / **#用於靜態資源的路徑模式。  

spring.mvc.throw-exception-if-no-handler-found = false#若是發現沒有處理程序處理請求,則應拋出「NoHandlerFoundException」。  

spring.mvc.view.prefix =#Spring MVC視圖前綴。  

spring.mvc.view.suffix =#Spring MVC視圖後綴。  

  

#春季資源處理(ResourceProperties)  

spring.resources.add-mappings = true#啓用默認資源處理。  

spring.resources.cache-period =#資源處理程序服務的資源的緩存期,以秒爲單位。  

spring.resources.chain.cache = true#在資源鏈中啓用緩存。  

spring.resources.chain.enabled =#啓用Spring資源處理鏈。默認狀況下禁用,除非至少有一種策略已啓用。  

spring.resources.chain.html-application-cache = false#啓用HTML5應用程序緩存清單重寫。  

spring.resources.chain.strategy.content.enabled = false#啓用內容版本策略。  

spring.resources.chain.strategy.content.paths = / **#應用於版本策略的逗號分隔的模式列表。  

spring.resources.chain.strategy.fixed.enabled = false#啓用固定版本策略。  

spring.resources.chain.strategy.fixed.paths =#應用於版本策略的逗號分隔模式列表。  

spring.resources.chain.strategy.fixed.version =#用於版本策略的版本字符串。  

spring.resources.static-locations = classpath:/ META-INF / resources /,classpath:/ resources /,classpath:/ static /,classpath:/ public /#靜態資源的位置。  

  

#SPRING SOCIAL(SocialWebAutoConfiguration)  

spring.social.auto-connection-views = false#爲支持的提供商啓用鏈接狀態視圖。  

  

#SPRING SOCIAL FACEBOOK(FacebookAutoConfiguration)  

spring.social.facebook.app-id =#您的應用程序的Facebook應用程序ID  

spring.social.facebook.app-secret =#你的應用程序的Facebook App Secret  

  

#SPRING SOCIAL LINKEDIN(LinkedInAutoConfiguration)  

spring.social.linkedin.app-id =#您的應用程序的LinkedIn應用程序ID  

spring.social.linkedin.app-secret =#你的應用的LinkedIn App Secret  

  

#SPRING SOCIAL TWITTER(TwitterAutoConfiguration)  

spring.social.twitter.app-id =#你的應用程序的Twitter應用程序ID  

spring.social.twitter.app-secret =#你的應用程序的Twitter App Secret  

  

#THYMELEAF(ThymeleafAutoConfiguration)  

spring.thymeleaf.cache = true#啓用模板緩存。  

spring.thymeleaf.check-template-location = true#檢查模板位置是否存在。  

spring.thymeleaf.content-type = text / html#Content-Type值。  

spring.thymeleaf.enabled = true#啓用MVC Thymeleaf視圖分辨率。  

spring.thymeleaf.encoding = UTF-8#模板編碼。  

spring.thymeleaf.excluded-view-names =#應該從分辨率中排除的逗號分隔的視圖名稱列表。  

spring.thymeleaf.mode = HTML5#應用於模板的模板模式。另請參閱StandardTemplateModeHandlers。  

spring.thymeleaf.prefix = classpath:/ templates /#構建URL時預先查看名稱的前綴。  

spring.thymeleaf.suffix = .html#在構建URL時附加到視圖名稱的後綴。  

spring.thymeleaf.template-resolver-order =#鏈中模板解析器的順序。  

spring.thymeleaf.view-names =#能夠解析的視圖名稱的逗號分隔列表。  

  

#速度模板(VelocityAutoConfiguration)  

spring.velocity.allow-request-override = false#設置是否容許HttpServletRequest屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。  

spring.velocity.allow-session-override = false#設置是否容許HttpSession屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。  

spring.velocity.cache =#啓用模板緩存。  

spring.velocity.charset = UTF-8#模板編碼。  

spring.velocity.check-template-location = true#檢查模板位置是否存在。  

spring.velocity.content-type = text / html#Content-Type值。  

spring.velocity.date-tool-attribute =#要在視圖的Velocity上下文中公開的DateTool輔助對象的名稱。  

spring.velocity.enabled = true#爲此技術啓用MVC視圖分辨率。  

spring.velocity.expose-request-attributes = false#設置在與模板合併以前是否應將全部請求屬性添加到模型中。  

spring.velocity.expose-session-attributes = false#設置在與模板合併以前是否應將全部HttpSession屬性添加到模型中。  

spring.velocity.expose-spring-macro-helpers = true#設置是否公開名爲「springMacroRequestContext」的供Spring的宏庫使用的RequestContext。  

spring.velocity.number-tool-attribute =#要在視圖的Velocity上下文中公開的NumberTool幫助程序對象的名稱。  

spring.velocity.prefer-file-system-access = true#首選文件系統訪問模板加載。文件系統訪問使模板更改的熱檢測成爲可能。  

spring.velocity.prefix =#構建URL時預先查看名稱的前綴。  

spring.velocity.properties.* =#附加速度屬性。  

spring.velocity.request-context-attribute =#全部視圖的RequestContext屬性的名稱。  

spring.velocity.resource-loader-path = classpath:/ templates /#模板路徑。  

spring.velocity.suffix = .vm#構建URL時附加到視圖名稱的後綴。  

spring.velocity.toolbox-config-location =#Velocity Toolbox配置位置。例如`/ WEB-INF / toolbox.xml`  

spring.velocity.view-names =#能夠解析的視圖名稱的白名單。  

  

  

  

#----------------------------------------  

#安全特性  

#----------------------------------------  

#安全(SecurityProperties)  

security.basic.authorize-mode = role#安全受權模式。  

security.basic.enabled = true#啓用基本認證。  

security.basic.path = / **#以逗號分隔的安全路徑列表。  

security.basic.realm = Spring#HTTP基本領域名稱。  

security.enable-csrf = false#啓用跨站點請求僞造支持。  

security.filter-order = 0#安全過濾器鏈順序。  

security.filter-dispatcher-types = ASYNC,FORWARD,INCLUDE,REQUEST#安全性篩選器鏈調度程序類型。  

security.headers.cache = true#啓用緩存控制HTTP標頭。  

security.headers.content-type = true#啓用「X-Content-Type-Options」標題。  

security.headers.frame = true#啓用「X-Frame-Options」標題。  

security.headers.hsts =#HTTP嚴格傳輸安全(HSTS)模式(無,域,所有)。  

security.headers.xss = true#啓用跨站點腳本(XSS)保護。  

security.ignored =#從逗號分隔的默認安全路徑中排除的路徑列表。  

security.require-ssl = false#爲全部請求啓用安全通道。  

security.sessions =無狀態#會話建立策略(永遠,從不,if_required,無狀態)。  

security.user.name = user#默認用戶名。  

security.user.password =#默認用戶名的密碼。默認狀況下會在啓動時記錄隨機密碼。  

security.user.role = USER#授予默認用戶名的角色。  

  

#SECURITY OAUTH2客戶端(OAuth2ClientProperties  

security.oauth2.client.client-id =#OAuth2客戶端ID。  

security.oauth2.client.client-secret =#OAuth2客戶端密鑰。隨機祕密是默認生成的  

  

#SECURITY OAUTH2 RESOURCES(ResourceServerProperties  

security.oauth2.resource.id =#資源的標識符。  

security.oauth2.resource.jwt.key-uri =#JWT令牌的URI。若是該值不可用而且密鑰是公開的,能夠設置。  

security.oauth2.resource.jwt.key-value =#JWT令牌的驗證密鑰。能夠是對稱密鑰或PEM編碼的RSA公鑰。  

security.oauth2.resource.prefer-token-info = true#使用token info,能夠設置爲false來使用用戶信息。  

security.oauth2.resource.service-id =資源#  

security.oauth2.resource.token-info-uri =#令牌解碼端點的URI。  

security.oauth2.resource.token-type =#使用userInfoUri時要發送的令牌類型。  

security.oauth2.resource.user-info-uri =#用戶端點的URI。  

  

#SECURITY OAUTH2 SSO(OAuth2SsoProperties  

security.oauth2.sso.filter-order =#若是不提供顯式的WebSecurityConfigurerAdapter  

security.oauth2.sso.login-path = / login#登陸頁面的路徑,即觸發重定向到OAuth2受權服務器的路徑  

  

  

#----------------------------------------  

#數據屬性  

#----------------------------------------  

  

#FLYWAY(FlywayProperties)  

flyway.baseline-description =#  

flyway.baseline-version = 1#版本開始遷移  

flyway.baseline-on-migrate =#  

flyway.check-location = false#檢查是否存在遷移腳本位置。  

flyway.clean-on-validation-error =#  

flyway.enabled = true#啓用飛路。  

flyway.encoding =#  

flyway.ignore-failed-future-migration =#  

flyway.init-sqls =#SQL語句在獲取它以後當即執行以初始化鏈接。  

flyway.locations = classpath:db / migration#遷移腳本的位置  

flyway.out-of-order =#  

flyway.password =#若是您但願Flyway建立本身的DataSource,則使用JDBC密碼  

flyway.placeholder-prefix =#  

flyway.placeholder-replacement =#  

flyway.placeholder-suffix =#  

flyway.placeholders。* =#  

flyway.schemas =#模式更新  

flyway.sql-migration-prefix = V#  

flyway.sql-migration-separator =#  

flyway.sql-migration-suffix = .sql#  

flyway.table =#  

flyway.url =#要遷移的數據庫的JDBC URL。若是未設置,則使用主要配置的數據源。  

flyway.user =#登陸要遷移的數據庫的用戶。  

flyway.validate-on-migrate =#  

  

#LIQUIBASE(LiquibaseProperties)  

liquibase.change-log = classpath:/db/changelog/db.changelog-master.yaml#更改日誌配置路徑。  

liquibase.check-change-log-location = true#檢查更改日誌位置是否存在。  

liquibase.contexts =#使用運行時上下文的逗號分隔列表。  

liquibase.default-schema =#默認數據庫模式。  

liquibase.drop-first = false#首先刪除數據庫模式。  

liquibase.enabled = true#啓用liquibase支持。  

liquibase.labels =#使用運行時標籤的逗號分隔列表。  

liquibase.parameters。* =#更改日誌參數。  

liquibase.password =#登陸要遷移的數據庫的密碼。  

liquibase.url =#要遷移的數據庫的JDBC URL。若是未設置,則使用主要配置的數據源。  

liquibase.user =#登陸要遷移的數據庫的用戶。  

  

#DAO(PersistenceExceptionTranslationAutoConfiguration)  

spring.dao.exceptiontranslation.enabled = true#啓用PersistenceExceptionTranslationPostProcessor。  

  

#CASSANDRA(CassandraProperties)  

spring.data.cassandra.cluster-name =#Cassandra集羣的名稱。  

spring.data.cassandra.compression =#Cassandra二進制協議支持的壓縮。  

spring.data.cassandra.connect-timeout-millis =#套接字選項:鏈接超時。  

spring.data.cassandra.consistency-level =#查詢一致性級別。  

spring.data.cassandra.contact-points = localhost#羣集節點地址的逗號分隔列表。  

spring.data.cassandra.fetch-size =#查詢默認獲取大小。  

spring.data.cassandra.keyspace-name =#使用的Keyspace名稱。  

spring.data.cassandra.load-balancing-policy =#負載均衡策略的類名稱。  

spring.data.cassandra.port =#Cassandra服務器的端口。  

spring.data.cassandra.password =#登陸服務器的密碼。  

spring.data.cassandra.read-timeout-millis =#套接字選項:讀取超時。  

spring.data.cassandra.reconnection-policy =#從新鏈接策略類。  

spring.data.cassandra.retry-policy =#重試策略的類名稱。  

spring.data.cassandra.serial-consistency-level =#查詢串行一致性級別。  

spring.data.cassandra.ssl = false#啓用SSL支持。  

spring.data.cassandra.username =#服務器的登陸用戶。  

  

#ELASTICSEARCH(ElasticsearchProperties)  

spring.data.elasticsearch.cluster-name = elasticsearch#Elasticsearch集羣名稱。  

spring.data.elasticsearch.cluster-nodes =#以逗號分隔的集羣節點地址列表。若是未指定,則啓動客戶機節點。  

spring.data.elasticsearch.properties。* =#用於配置客戶端的其餘屬性。  

spring.data.elasticsearch.repositories.enabled = true#啓用Elasticsearch存儲庫。  

  

#MONGODB(MongoProperties)  

spring.data.mongodb.authentication-database =#認證數據庫名稱。  

spring.data.mongodb.database = test#數據庫名稱。  

spring.data.mongodb.field -naming-strategy =#要使用的FieldNamingStrategy的徹底限定名稱。  

spring.data.mongodb.grid-fs-database =#GridFS數據庫名稱。  

spring.data.mongodb.host = localhost#Mongo服務器主機。  

spring.data.mongodb.password =#登陸mongo服務器的密碼。  

spring.data.mongodb.port = 27017#Mongo服務器端口。  

spring.data.mongodb.repositories.enabled = true#啓用Mongo存儲庫。  

spring.data.mongodb.uri = mongodb:// localhost / test#Mongo數據庫URI。設置時,主機和端口將被忽略。  

spring.data.mongodb.username =#mongo服務器的登陸用戶。  

  

#數據REST(RepositoryRestProperties)  

spring.data.rest.base-path =#Spring Data REST用於公開資源庫資源的基本路徑。  

spring.data.rest.default-page-size =#頁面的默認大小。  

spring.data.rest.enable-enum-translation =#經過Spring Data REST默認資源包啓用枚舉值轉換。  

spring.data.rest.limit-param-name =#URL查詢字符串參數的名稱,表示一次返回多少個結果。  

spring.data.rest.max-page-size =#頁面的最大尺寸。  

spring.data.rest.page-param-name =#指示要返回哪一個頁面的URL查詢字符串參數的名稱。  

spring.data.rest.return-body-on-create =#建立實體後返回響應主體。  

spring.data.rest.return-body-on-update =#更新實體後返回響應主體。  

spring.data.rest.sort-param-name =#指示排序結果的方向的URL查詢字符串參數的名稱。  

  

#SOLR(SolrProperties)  

spring.data.solr.host = http://127.0.0.1:8983 / solr#Solr主機。若是設置了「zk-host」,則忽略。  

spring.data.solr.repositories.enabled = true#啓用Solr存儲庫。  

spring.data.solr.zk-host =#HOST:PORT形式的#ZooKeeper主機地址。  

  

#DATASOURCE(DataSourceAutoConfiguration&DataSourceProperties)  

spring.datasource.continue-on-error = false#若是在初始化數據庫時發生錯誤,請不要中止。  

spring.datasource.data =#數據(DML)腳本資源參考。  

spring.datasource.driver-class-name =#JDBC驅動程序的徹底限定名稱。默認狀況下基於URL自動檢測。  

spring.datasource.initialize = true#使用'data.sql'填充數據庫。  

spring.datasource.jmx-enabled = false#啓用JMX支持(若是由底層池提供)。  

spring.datasource.jndi-name =#數據源的JNDI位置。設置時會忽略類,網址,用戶名和密碼。  

spring.datasource.max-active =#例如100  

spring.datasource.max-idle =#例如8  

spring.datasource.max等待=  

spring.datasource.min-evictable空閒時間-米利斯=  

spring.datasource.min空閒= 8  

spring.datasource.name = testdb#數據源的名稱。  

spring.datasource.password =#登陸數據庫的密碼。  

spring.datasource.platform = all#架構資源中使用的平臺(架構 - $ {platform} .sql)。  

spring.datasource.schema =#架構(DDL)腳本資源引用。  

spring.datasource.separator =; #SQL初始化腳本中的語句分隔符。  

spring.datasource.sql-script-encoding =#SQL腳本編碼。  

spring.datasource.test-on-borrow =#例如`false`  

spring.datasource.test-on-return =#例如`false`  

spring.datasource.test-while-idle =#  

spring.datasource.time-between-eviction-runs-millis = 1  

spring.datasource.type =#要使用的鏈接池實現的徹底限定名稱。默認狀況下,它是從類路徑中自動檢測的。  

spring.datasource.url =#數據庫的JDBC URL。  

spring.datasource.username =  

spring.datasource.validation查詢=  

  

#H2 Web控制檯(H2ConsoleProperties)  

spring.h2.console.enabled = false#啓用控制檯。  

spring.h2.console.path = / h2-console#控制檯可用的路徑。  

  

#JOOQ(JooqAutoConfiguration)  

spring.jooq.sql-dialect =#與配置的數據源進行通訊時使用的SQLDialect JOOQ。例如`POSTGRES`  

  

#JPA(JpaBaseConfiguration,HibernateJpaAutoConfiguration)  

spring.data.jpa.repositories.enabled = true#啓用JPA存儲庫。  

spring.jpa.database =#目標數據庫進行操做,默認爲自動檢測。可使用「databasePlatform」屬性進行替代設置。  

spring.jpa.database-platform =#要運行的目標數據庫的名稱,默認爲自動檢測。也可使用「數據庫」枚舉進行設置。  

spring.jpa.generate-ddl = false#啓動時初始化模式。  

spring.jpa.hibernate.ddl-auto =#DDL模式。這其實是「hibernate.hbm2ddl.auto」屬性的快捷方式。使用嵌入式數據庫時默認爲「建立 - 刪除」,不然爲「無」。  

spring.jpa.hibernate.naming-strategy =#命名策略徹底限定名稱。  

spring.jpa.open-in-view = true#註冊OpenEntityManagerInViewInterceptor。將JPA EntityManager綁定到線程,以完成請求的整個處理。  

spring.jpa.properties。* =#在JPA提供程序上設置的其餘本機屬性。  

spring.jpa.show-sql = false#啓用SQL語句的日誌記錄。  

  

#JTA(JtaAutoConfiguration)  

spring.jta.log-dir =#事務日誌目錄。  

  

#ATOMIKOS  

spring.jta.checkpoint-interval = 500#檢查點之間的間隔。  

spring.jta.console-file-count = 1#能夠建立的調試日誌文件的數量。  

spring.jta.console-file-limit = -1#調試日誌文件中最多能夠存儲多少個字節。  

spring.jta.console-file-name = tm.out#調試日誌文件名。  

spring.jta.console-log-level =#控制檯日誌級別。  

spring.jta.default-jta-timeout = 10000#JTA事務的默認超時。  

spring.jta.enable-logging = true#啓用磁盤日誌記錄。  

spring.jta.force-shutdown-on-vm-exit = false#指定VM關閉是否應該觸發強制關閉事務內核。  

spring.jta.log-base-dir =#應該存儲日誌文件的目錄。  

spring.jta.log-base-name = tmlog#事務日誌文件的基本名稱。  

spring.jta.max-actives = 50#活動事務的最大數量。  

spring.jta.max-timeout = 300000#能夠容許事務處理的最大超時時間(以毫秒爲單位)。  

spring.jta.output-dir =#用於存儲調試日誌文件的目錄。  

spring.jta.serial-jta-transactions = true#指定是否應儘量地加入子交易。  

spring.jta.service =#應該啓動的事務管理器實現。  

spring.jta.threaded-two-phase-commit = true#在參與資源上使用不一樣(併發)線程進行兩階段提交。  

spring.jta.transaction-manager-unique-name =#事務管理器的惟一名稱。  

spring.jta.atomikos.connectionfactory.borrow-connection-timeout = 30#用於從池中借用鏈接的超時,以秒爲單位。  

spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag = true#建立會話時是否忽略事務處理標誌。  

spring.jta.atomikos.connectionfactory.local-transaction-mode = false#是否須要本地事務。  

spring.jta.atomikos.connectionfactory.maintenance-interval = 60#池的維護線程運行之間的時間,以秒爲單位。  

spring.jta.atomikos.connectionfactory.max-idle-time = 60#從池中清除鏈接以後的時間,以秒爲單位。  

spring.jta.atomikos.connectionfactory.max-lifetime = 0#以秒爲單位的鏈接能夠在被銷燬前聚集的時間。0表示沒有限制。  

spring.jta.atomikos.connectionfactory.max-pool-size = 1#池的最大尺寸。  

spring.jta.atomikos.connectionfactory.min-pool-size = 1#池的最小大小。  

spring.jta.atomikos.connectionfactory.reap-timeout = 0#借用鏈接的收穫超時(以秒爲單位)。0表示沒有限制。  

spring.jta.atomikos.connectionfactory.unique-resource-name = jmsConnectionFactory#在恢復期間用於標識資源的惟一名稱。  

spring.jta.atomikos.datasource.borrow-connection-timeout = 30#用於從池中借用鏈接的超時,以秒爲單位。  

spring.jta.atomikos.datasource.default-isolation-level =#池提供的鏈接的默認隔離級別。  

spring.jta.atomikos.datasource.login-timeout =#創建數據庫鏈接的超時時間,以秒爲單位。  

spring.jta.atomikos.datasource.maintenance-interval = 60#池維護線程運行之間的時間(以秒爲單位)。  

spring.jta.atomikos.datasource.max-idle-time = 60#從池中清除鏈接以後的時間,以秒爲單位。  

spring.jta.atomikos.datasource.max-lifetime = 0#以秒爲單位的鏈接能夠在被銷燬前聚集的時間。0表示沒有限制。  

spring.jta.atomikos.datasource.max-pool-size = 1#池的最大尺寸。  

spring.jta.atomikos.datasource.min-pool-size = 1#池的最小大小。  

spring.jta.atomikos.datasource.reap-timeout = 0#借用鏈接的收穫超時(以秒爲單位)。0表示沒有限制。  

spring.jta.atomikos.datasource.test-query =#返回以前用於驗證鏈接的SQL查詢或語句。  

spring.jta.atomikos.datasource.unique-resource-name = dataSource#在恢復期間用於標識資源的惟一名稱。  

  

#BITRONIX  

spring.jta.allow-multiple-lrc = false#容許多個LRC資源登記到同一個事務中。  

spring.jta.asynchronous2-pc = false#啓用異步執行兩階段提交。  

spring.jta.background-recovery-interval-seconds = 60#在後臺運行恢復進程的時間間隔(以秒爲單位)。  

spring.jta.current-node-only-recovery = true#僅恢復當前節點。  

spring.jta.debug-zero-resource-transaction = false#記錄建立和提交調用堆棧的事務執行沒有一個登記資源。  

spring.jta.default-transaction-timeout = 60#以秒爲單位的默認事務超時。  

spring.jta.disable-jmx = false#啓用JMX支持。  

spring.jta.exception-analyzer =#設置要使用的異常分析器實現的徹底限定名稱。  

spring.jta.filter-log-status = false#啓用對日誌的過濾,以便僅寫入強制日誌。  

spring.jta.force-batching-enabled = true#設置是否對磁盤部隊進行批處理。  

spring.jta.forced-write-enabled = true#設置日誌是否強制爲磁盤。  

spring.jta.graceful-shutdown-interval = 60#TM在關閉時間終止事務以前等待事務完成的最大時間量。  

spring.jta.jndi-transaction-synchronization-registry-name =#TransactionSynchronizationRegistry的JNDI名稱。  

spring.jta.jndi-user-transaction-name =#UserTransaction的JNDI名稱。  

spring.jta.journal = disk#期刊的名稱。能夠是'磁盤','空'或類名。  

spring.jta.log-part1-filename = btm1.tlog#日誌的第一個片斷的名稱。  

spring.jta.log-part2-filename = btm2.tlog#日誌的第二個片斷的名稱。  

spring.jta.max-log-size-in-mb = 2#日誌片斷的最大大小(以兆字節爲單位)。  

spring.jta.resource-configuration-filename =#ResourceLoader配置文件名。  

spring.jta.server-id =#必須惟一標識此TM實例的ASCII ID。默認爲機器的IP地址。  

spring.jta.skip-corrupted-logs = false#跳過損壞的事務日誌條目。  

spring.jta.warn-about-zero-resource-transaction = true#爲未執行單個登記資源的事務記錄警告。  

spring.jta.bitronix.connectionfactory.acquire-increment = 1#增加池時建立的鏈接數。  

spring.jta.bitronix.connectionfactory.acquisition-interval = 1#在獲取無效鏈接後嘗試從新獲取鏈接以前,須要等待的時間(以秒爲單位)。  

spring.jta.bitronix.connectionfactory.acquisition-timeout = 30#以秒爲單位的超時時間,用於從池中獲取鏈接。  

spring.jta.bitronix.connectionfactory.allow-local-transactions = true#事務管理器是否應容許混合XA和非XA事務。  

spring.jta.bitronix.connectionfactory.apply-transaction-timeout = false#在登記時是否應在XAResource上設置事務超時。  

spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled = true#資源是否應該自動登記和除名。  

spring.jta.bitronix.connectionfactory.cache-producer-consumers = true#是否生產和消費者應該被緩存。  

spring.jta.bitronix.connectionfactory.defer-connection-release = true#提供者是否能夠在同一鏈接上運行多個事務並支持事務交叉。  

spring.jta.bitronix.connectionfactory.ignore-recovery-failures = false#是否應該忽略恢復失敗。  

spring.jta.bitronix.connectionfactory.max-idle-time = 60#鏈接從池中清理以後的時間,以秒爲單位。  

spring.jta.bitronix.connectionfactory.max-pool-size = 10#池的最大尺寸。0表示沒有限制。  

spring.jta.bitronix.connectionfactory.min-pool-size = 0#池的最小大小。  

spring.jta.bitronix.connectionfactory.password =#用於鏈接到JMS提供程序的密碼。  

spring.jta.bitronix.connectionfactory.share-transaction-connections = false#是否能夠在事務上下文中共享ACCESSIBLE狀態下的鏈接。  

spring.jta.bitronix.connectionfactory.test-connections = true#是否應該從池中獲取鏈接時測試鏈接。  

spring.jta.bitronix.connectionfactory.two-pc-ordering-position = 1#這個資源在兩階段提交期間應該採起的位置(老是首先是Integer.MIN_VALUE,老是最後是Integer.MAX_VALUE)。  

spring.jta.bitronix.connectionfactory.unique-name = jmsConnectionFactory#在恢復期間用於標識資源的惟一名稱。  

spring.jta.bitronix.connectionfactory.use-tm-join = true在啓動XAResources時是否應該使用TMJOIN。  

spring.jta.bitronix.connectionfactory.user =#用於鏈接到JMS提供者的用戶。  

spring.jta.bitronix.datasource.acquire-increment = 1#增加池時建立的鏈接數。  

spring.jta.bitronix.datasource.acquisition-interval = 1#在獲取無效鏈接後,嘗試再次獲取鏈接以前的等待時間,以秒爲單位。  

spring.jta.bitronix.datasource.acquisition-timeout = 30#以秒爲單位超時獲取池中的鏈接。  

spring.jta.bitronix.datasource.allow-local-transactions = true#事務管理器是否應容許混合XA和非XA事務。  

spring.jta.bitronix.datasource.apply-transaction-timeout = false#在註冊時是否應該在XAResource上設置事務超時。  

spring.jta.bitronix.datasource.automatic-enlisting-enabled = true#資源是否應該自動登記和除名。  

spring.jta.bitronix.datasource.cursor-holdability =#鏈接的默認光標可保存性。  

spring.jta.bitronix.datasource.defer-connection-release = true#數據庫是否能夠在同一鏈接上運行多個事務並支持事務交叉。  

spring.jta.bitronix.datasource.enable -jdbc4-connection-test =#是否在從池中獲取鏈接時調用Connection.isValid()。  

spring.jta.bitronix.datasource.ignore-recovery-failures = false#是否應該忽略恢復失敗。  

spring.jta.bitronix.datasource.isolation-level =#鏈接的默認隔離級別。  

spring.jta.bitronix.datasource.local-auto-commit =#本地事務的默認自動提交模式。  

spring.jta.bitronix.datasource.login-timeout =#創建數據庫鏈接的超時時間,以秒爲單位。  

spring.jta.bitronix.datasource.max-idle-time = 60#從池中清除鏈接以後的時間,以秒爲單位。  

spring.jta.bitronix.datasource.max-pool-size = 10#池的最大尺寸。0表示沒有限制。  

spring.jta.bitronix.datasource.min-pool-size = 0#池的最小尺寸。  

spring.jta.bitronix.datasource.prepared-statement-cache-size = 0#準備好的語句緩存的目標大小。0禁用緩存。  

spring.jta.bitronix.datasource.share-transaction-connections = false#是否能夠在事務上下文中共享ACCESSIBLE狀態下的鏈接。  

spring.jta.bitronix.datasource.test-query =#返回以前用於驗證鏈接的SQL查詢或語句。  

spring.jta.bitronix.datasource.two-pc-ordering-position = 1#這個資源在兩階段提交期間應該採用的位置(老是首先是Integer.MIN_VALUE,老是最後是Integer.MAX_VALUE)。  

spring.jta.bitronix.datasource.unique-name = dataSource#在恢復期間用於標識資源的惟一名稱。  

spring.jta.bitronix.datasource.use-tm-join = true在啓動XAResources時是否應使用TMJOIN。  

  

#EMBEDDED MONGODB(EmbeddedMongoProperties)  

spring.mongodb.embedded.features = SYNC_DELAY#要啓用的功能的逗號分隔列表。  

spring.mongodb.embedded.version = 2.6.10#使用Mongo版本。  

  

#REDIS(RedisProperties)  

spring.redis.database = 0#鏈接工廠使用的數據庫索引。  

spring.redis.host = localhost#Redis服務器主機。  

spring.redis.password =#登陸redis服務器的密碼。  

spring.redis.pool.max-active = 8#池在給定時間能夠分配的最大鏈接數。使用負值無限制。  

spring.redis.pool.max-idle = 8#池中「空閒」鏈接的最大數量。使用負值表示無限數量的空閒鏈接。  

spring.redis.pool.max-wait = -1#鏈接分配在池耗盡時拋出異常以前應阻塞的最長時間量(以毫秒爲單位)。使用負值能夠無限期地阻止。  

spring.redis.pool.min-idle = 0#目標爲保持在池中的最小空閒鏈接數。若是該設置是確定的,則該設置僅起做用。  

spring.redis.port = 6379#Redis服務器端口。  

spring.redis.sentinel.master =#Redis服務器的名稱。  

spring.redis.sentinel.nodes =#主機:端口對的逗號分隔列表。  

spring.redis.timeout = 0#鏈接超時(以毫秒爲單位)。  

  

  

#----------------------------------------  

#整合特性  

#----------------------------------------  

  

#ACTIVEMQ(ActiveMQProperties)  

spring.activemq.broker-url =#ActiveMQ代理的URL。自動生成默認。例如`tcp:// localhost:61616`  

spring.activemq.in-memory = true#指定默認代理URL是否應該在內存中。若是指定了明確的代理,則忽略。  

spring.activemq.password =#登陸經紀人的密碼。  

spring.activemq.pooled = false#指定是否應建立PooledConnectionFactory而不是常規的ConnectionFactory。  

spring.activemq.user =#代理的登陸用戶。  

  

#ARTEMIS(ArtemisProperties)  

spring.artemis.embedded.cluster-password =#集羣密碼。默認狀況下在啓動時隨機生成。  

spring.artemis.embedded.data-directory =#日記文件目錄。若是關閉持久性,則不須要。  

spring.artemis.embedded.enabled = true#若是Artemis服務器API可用,則啓用嵌入模式。  

spring.artemis.embedded.persistent = false#啓用持久存儲。  

spring.artemis.embedded.queues =#在啓動時建立的逗號分隔列表。  

spring.artemis.embedded.server-id =#服務器ID。默認狀況下,使用自動遞增的計數器。  

spring.artemis.embedded.topics =#啓動時要建立的主題的逗號分隔列表。  

spring.artemis.host = localhost#阿蒂米斯經紀人主機。  

spring.artemis.mode =#Artemis部署模式,默認爲自動檢測。能夠明確設置爲「本地」或「嵌入」。  

spring.artemis.port = 61616#阿蒂米斯經紀人港口。  

  

#SPRING BATCH(BatchProperties)  

spring.batch.initializer.enabled = true#若是須要,在啓動時建立所需的批處理表。  

spring.batch.job.enabled = true#啓動時執行上下文中的全部Spring批處理做業。  

spring.batch.job.names =#逗號分隔的啓動時要執行的做業名稱列表(例如`job1,job2`)。默認狀況下,執行在上下文中找到的全部做業。  

spring.batch.schema = classpath:org / springframework / batch / core / schema - @@ platform @@。sql#用於初始化數據庫模式的SQL文件的路徑。  

spring.batch.table-prefix =#全部批量元數據表的表前綴。  

  

#HORNETQ(HornetQProperties)  

spring.hornetq.embedded.cluster-password =#集羣密碼。默認狀況下在啓動時隨機生成。  

spring.hornetq.embedded.data-directory =#日記文件目錄。若是關閉持久性,則不須要。  

spring.hornetq.embedded.enabled = true#若是HornetQ服務器API可用,則啓用嵌入模式。  

spring.hornetq.embedded.persistent = false#啓用持久存儲。  

spring.hornetq.embedded.queues =#在啓動時建立的逗號分隔列表。  

spring.hornetq.embedded.server-id =#服務器ID。默認狀況下,使用自動遞增的計數器。  

spring.hornetq.embedded.topics =#在啓動時建立的以逗號分隔的主題列表。  

spring.hornetq.host = localhost#HornetQ代理主機。  

spring.hornetq.mode =#HornetQ部署模式,默認爲自動檢測。能夠明確設置爲「本地」或「嵌入」。  

spring.hornetq.port = 5445#HornetQ經紀人端口。  

  

#JMS(JmsProperties)  

spring.jms.jndi-name =#鏈接工廠的JNDI名稱。設置時,優先於其餘鏈接工廠自動配置。  

spring.jms.listener.acknowledge-mode =#容器的確認模式。默認狀況下,偵聽器經過自動確認進行事務處理。  

spring.jms.listener.auto-startup = true#啓動時自動啓動容器。  

spring.jms.listener.concurrency =#最小併發消費者數量。  

spring.jms.listener.max-concurrency =#最大併發消費者數量。  

spring.jms.pub-sub-domain = false#指定默認目標類型是否爲主題。  

  

#兔子(兔子屬性)  

spring.rabbitmq.addresses =#客戶端應鏈接到的地址的逗號分隔列表。  

spring.rabbitmq.dynamic = true#建立一個AmqpAdmin bean。  

spring.rabbitmq.host = localhost#RabbitMQ主機。  

spring.rabbitmq.listener.acknowledge-mode =#容器的確認模式。  

spring.rabbitmq.listener.auto-startup = true#啓動時自動啓動容器。  

spring.rabbitmq.listener.concurrency =#消費者的最小數量。  

spring.rabbitmq.listener.max-concurrency =#消費者的最大數量。  

spring.rabbitmq.listener.prefetch =#在單個請求中要處理的消息數。它應該大於或等於事務大小(若是使用)。  

spring.rabbitmq.listener.transaction-size =#事務中要處理的消息數。爲了得到最佳結果,它應該小於或等於預取計數。  

spring.rabbitmq.password =#登陸對經紀人進行身份驗證。  

spring.rabbitmq.port = 5672#RabbitMQ端口。  

spring.rabbitmq.requested-heartbeat =#請求的心跳超時,以秒爲單位; 零爲零。  

spring.rabbitmq.ssl.enabled = false#啓用SSL支持。  

spring.rabbitmq.ssl.key-store =#保存SSL證書的密鑰存儲區的路徑。  

spring.rabbitmq.ssl.key-store-password =#用於訪問密鑰存儲區的密碼。  

spring.rabbitmq.ssl.trust-store =#持有SSL證書的信任庫。  

spring.rabbitmq.ssl.trust-store-password =#用於訪問信任存儲的密碼。  

spring.rabbitmq.ssl.algorithm =#使用的SSL算法。默認狀況下由rabbit客戶端庫配置。  

spring.rabbitmq.username =#登陸用戶向代理進行身份驗證。  

spring.rabbitmq.virtual-host =#鏈接到代理時使用的虛擬主機。  

  

  

#----------------------------------------  

#執行器屬性  

#----------------------------------------  

  

#ENDPOINTS(AbstractEndpoint子類)  

endpoints.enabled = true#啓用端點。  

endpoints.sensitive =#默認的端點敏感設置。  

endpoints.actuator.enabled = true#啓用端點。  

endpoints.actuator.path =#端點URL路徑。  

endpoints.actuator.sensitive = false#啓用端點的安全性。  

endpoints.autoconfig.enabled =#啓用端點。  

endpoints.autoconfig.id =#端點標識符。  

endpoints.autoconfig.sensitive =#標記端點是否暴露敏感信息。  

endpoints.beans.enabled =#啓用端點。  

endpoints.beans.id =#端點標識符。  

endpoints.beans.sensitive =#標記端點是否暴露敏感信息。  

endpoints.configprops.enabled =#啓用端點。  

endpoints.configprops.id =#端點標識符。  

endpoints.configprops.keys-to-sanitize =密碼,密鑰,密鑰,。*憑證。*,vcap_services#應該清理的密鑰。鍵能夠是屬性以或正則表達式結束的簡單字符串。  

endpoints.configprops.sensitive =#標記端點是否公開敏感信息。  

endpoints.docs.curies.enabled = false#啓用居里代。  

endpoints.docs.enabled = true#啓用執行器文檔終結點。  

endpoints.docs.path = / docs#  

endpoints.docs.sensitive = false#  

endpoints.dump.enabled =#啓用端點。  

endpoints.dump.id =#端點標識符。  

endpoints.dump.sensitive =#標記端點是否暴露敏感信息。  

endpoints.env.enabled =#啓用端點。  

endpoints.env.id =#端點標識符。  

endpoints.env.keys-to-sanitize =密碼,密鑰,密鑰,。*憑證。*,vcap_services#應該清理的密鑰。鍵能夠是屬性以或正則表達式結束的簡單字符串。  

endpoints.env.sensitive =#標記端點是否暴露敏感信息。  

endpoints.flyway.enabled =#啓用端點。  

endpoints.flyway.id =#端點標識符。  

endpoints.flyway.sensitive =#標記端點是否暴露敏感信息。  

endpoints.health.enabled =#啓用端點。  

endpoints.health.id =#端點標識符。  

endpoints.health.mapping。* =#健康狀態到HttpStatus代碼的映射。默認狀況下,註冊的健康狀態映射到合理的默認值(即UP地圖爲200)。  

endpoints.health.sensitive =#標記端點是否暴露敏感信息。  

endpoints.health.time-to-live = 1000#緩存結果的生存時間(以毫秒爲單位)。  

endpoints.info.enabled =#啓用端點。  

endpoints.info.id =#端點標識符。  

endpoints.info.sensitive =#標記端點是否暴露敏感信息。  

endpoints.jolokia.enabled = true#啓用Jolokia端點。  

endpoints.jolokia.path = / jolokia#端點URL路徑。  

endpoints.jolokia.sensitive = true#啓用端點的安全性。  

endpoints.liquibase.enabled =#啓用端點。  

endpoints.liquibase.id =#端點標識符。  

endpoints.liquibase.sensitive =#標記端點是否暴露敏感信息。  

endpoints.logfile.enabled = true#啓用端點。  

endpoints.logfile.path = / logfile#端點URL路徑。  

endpoints.logfile.sensitive = true#在端點上啓用安全性。  

endpoints.mappings.enabled =#啓用端點。  

endpoints.mappings.id =#端點標識符。  

endpoints.mappings.sensitive =#標記端點是否暴露敏感信息。  

endpoints.metrics.enabled =#啓用端點。  

endpoints.metrics.filter.enabled = true#啓用度量servlet過濾器。  

endpoints.metrics.id =#端點標識符。  

endpoints.metrics.sensitive =#標記端點是否暴露敏感信息。  

endpoints.shutdown.enabled =#啓用端點。  

endpoints.shutdown.id =#端點標識符。  

endpoints.shutdown.sensitive =#標記端點是否暴露敏感信息。  

endpoints.trace.enabled =#啓用端點。  

endpoints.trace.id =#端點標識符。  

endpoints.trace.sensitive =#標記端點是否暴露敏感信息。  

  

#ENDPOINTS CORS配置(EndpointCorsProperties)  

endpoints.cors.allow-credentials =#設置是否支持憑證。未設置時,不支持憑證。  

endpoints.cors.allowed-headers =#在請求中容許使用逗號分隔的標題列表。'*'容許全部標題。  

endpoints.cors.allowed-methods = GET#逗號分隔的容許的方法列表。'*'容許全部方法。  

endpoints.cors.allowed-origins =#逗號分隔的起源列表容許。'*'容許全部的來源。未設置時,CORS支持被禁用。  

endpoints.cors.exposed-headers =#逗號分隔的標題列表包含在響應中。  

endpoints.cors.max-age = 1800#以秒爲單位,客戶端能夠緩存飛行前請求的響應。  

  

#JMX ENDPOINT(EndpointMBeanExportProperties)  

endpoints.jmx.domain =#JMX域名。若是設置,則使用'spring.jmx.default-domain'的值進行初始化。  

endpoints.jmx.enabled = true#啓用全部端點的JMX導出。  

endpoints.jmx.static-names =#附加到全部表示端點的MBean的ObjectName的靜態屬性。  

endpoints.jmx.unique-names = false#確保ObjectNames在發生衝突時被修改。  

  

#JOLOKIA(JolokiaProperties)  

jolokia.config。* =#請參閱Jolokia手冊  

  

#管理HTTP服務器(ManagementServerProperties)  

management.add-application-context-header = true#在每一個響應中添加「X-Application-Context」HTTP標頭。  

management.address =#管理端點應該綁定的網絡地址。  

management.context-path =#管理端點上下文路徑。例如`/執行器'  

management.port =#管理端點HTTP端口。默認使用與應用程序相同的端口。  

management.security.enabled = true#啓用安全性。  

management.security.role = ADMIN#訪問管理端點所需的角色。  

management.security.sessions =無狀態#會話建立策略使用(永遠,從不,if_required,無狀態)。  

  

#健康指標(之前爲健康*)  

management.health.db.enabled = true#啓用數據庫運行情況檢查。  

management.health.defaults.enabled = true#啓用默認運行情況指示器。  

management.health.diskspace.enabled = true#啓用磁盤空間運行情況檢查。  

management.health.diskspace.path =#用於計算可用磁盤空間的路徑。  

management.health.diskspace.threshold = 0#應該可用的最小磁盤空間,以字節爲單位。  

management.health.elasticsearch.enabled = true#啓用elasticsearch運行情況檢查。  

management.health.elasticsearch.indices =#逗號分隔的索引名稱。  

management.health.elasticsearch.response-timeout = 100#等待羣集響應的時間(以毫秒爲單位)。  

management.health.jms.enabled = true#啓用JMS運行情況檢查。  

management.health.mail.enabled = true#啓用郵件運行情況檢查。  

management.health.mongo.enabled = true#啓用MongoDB運行情況檢查。  

management.health.rabbit.enabled = true#啓用RabbitMQ運行情況檢查。  

management.health.redis.enabled = true#啓用Redis運行情況檢查。  

management.health.solr.enabled = true#啓用Solr運行情況檢查。  

management.health.status.order = DOWN,OUT_OF_SERVICE,UNKNOWN,UP#以嚴重性順序的逗號分隔的健康狀態列表。  

  

#TRACING((TraceProperties)  

management.trace.include =請求標題,響應標題,錯誤#要包含在跟蹤中的項目。  

  

#遠程外殼  

shell.auth = simple#認證類型。根據環境自動檢測。  

shell.auth.jaas.domain =個人域#JAAS域。  

shell.auth.key.path =#認證密鑰的路徑。這應該指向一個有效的「.pem」文件。  

shell.auth.simple.user.name = user#登陸用戶。  

shell.auth.simple.user.password =#登陸密碼。  

shell.auth.spring.roles = ADMIN#用於登陸到CRaSH控制檯的所需角色的逗號分隔列表。  

shell.command-path-patterns = classpath *:/ commands / **,classpath *:/ crash / commands / **#用於查找命令的模式。  

shell.command-refresh-interval = -1#若是須要(以秒爲單位),掃描更改並更新命令。  

shell.config-path-patterns = classpath *:/ crash / *#用於查找配置的模式。  

shell.disabled-commands = jpa *,jdbc *,jndi *#禁用命令的逗號分隔列表。  

shell.disabled-plugins =#禁用逗號分隔的插件列表。根據環境,某些插件默認處於禁用狀態。  

shell.ssh.auth-timeout =#用戶將被提示再次登陸後的毫秒數。  

shell.ssh.enabled = true#啓用CRaSH SSH支持。  

shell.ssh.idle-timeout =#關閉未使用的鏈接以後的毫秒數。  

shell.ssh.key-path =#SSH服務器密鑰的路徑。  

shell.ssh.port = 2000#SSH端口。  

shell.telnet.enabled = false#啓用CRaSH telnet支持。若是TelnetPlugin可用,則默認啓用。  

shell.telnet.port = 5000#Telnet端口。  

  

#GIT信息  

spring.git.properties =#生成的git信息屬性文件的資源引用。  

  

#METRICS EXPORT(MetricExportProperties)  

spring.metrics.export.aggregate.key-pattern =#告訴聚合器如何處理源存儲庫中的密鑰的模式。  

spring.metrics.export.aggregate.prefix =#全局存儲庫的前綴(若是處於活動狀態)。  

spring.metrics.export.delay-millis = 5000#導出刻度之間的延遲(以毫秒爲單位)。按照計劃將度量標準導出到外部源,而且延遲。  

spring.metrics.export.enabled = true#啓用度量標準導出的標誌(假設MetricWriter可用)。  

spring.metrics.export.excludes =#要排除的度量標準名稱的模式列表。包含後應用。  

spring.metrics.export.includes =#要包含的度量標準名稱的模式列表。  

spring.metrics.export.redis.key = keys.spring.metrics#Redis存儲庫導出密鑰(若是處於活動狀態)。  

spring.metrics.export.redis.prefix = spring.metrics#若是處於活動狀態,則Redis存儲庫的前綴。  

spring.metrics.export.send-latest =#根據不導出未更改的度量標準值,標記關閉任何可用的優化。  

spring.metrics.export.statsd.host =#接收導出指標的statsd服務器的主機。  

spring.metrics.export.statsd.port = 8125#接收導出指標的statsd服務器的端口。  

spring.metrics.export.statsd.prefix =#statsd導出指標的前綴。  

spring.metrics.export.triggers。* =#每一個MetricWriter bean名稱的特定觸發器屬性。  

  

  

#----------------------------------------  

#DEVTOOLS屬性  

#----------------------------------------  

  

#DEVTOOLS(DevToolsProperties)  

spring.devtools.livereload.enabled = true#啓用livereload.com兼容服務器。  

spring.devtools.livereload.port = 35729#服務器端口。  

spring.devtools.restart.additional-exclude =#應該從觸發徹底從新啓動時排除的其餘模式。  

spring.devtools.restart.additional-paths =#觀察更改的其餘路徑。  

spring.devtools.restart.enabled = true#啓用自動重啓。  

spring.devtools.restart.exclude = META-INF /行家/ **,META-INF /資源/ **,資源/ **,靜態/ **,公共/ **,模板/ **,** / * Test.class,** / * Tests.class,git.properties#應該排除觸發徹底從新啓動的模式。  

spring.devtools.restart.poll-interval = 1000#輪詢類路徑更改之間等待的時間(以毫秒爲單位)。  

spring.devtools.restart.quiet-period = 400#觸發從新啓動以前,沒有任何類路徑更改所需的安靜時間(以毫秒爲單位)。  

spring.devtools.restart.trigger-file =#特定文件的名稱,在更改時會觸發從新啓動檢查。若是未指定,則任何類路徑文件更改都將觸發從新啓動。  

  

#REMOTE DEVTOOLS(RemoteDevToolsProperties)  

spring.devtools.remote.context-path = /。~~ spring-boot!〜#用於處理遠程鏈接的上下文路徑。  

spring.devtools.remote.debug.enabled = true#啓用遠程調試支持。  

spring.devtools.remote.debug.local-port = 8000#本地遠程調試服務器端口。  

spring.devtools.remote.proxy.host =#用於鏈接遠程應用程序的代理主機。  

spring.devtools.remote.proxy.port =#用於鏈接遠程應用程序的代理端口。  

spring.devtools.remote.restart.enabled = true#啓用遠程重啓。  

spring.devtools.remote.secret =#創建鏈接所需的共享密鑰(啓用遠程支持所必需的)。  

spring.devtools.remote.secret-header-name = X-AUTH-TOKEN#用於傳輸共享密鑰的HTTP頭。 

  1. #================================================= ==================
  2.  
    #共同spring boot特性
  3.  
  4.  
    #此示例文件做爲指導提供。不要在其中複製它
  5.  
    #完整到您本身的應用程序。^^^
  6.  
    #================================================= ==================
  7.  
     
  8.  
     
  9.  
    #----------------------------------------
  10.  
    #核心屬性
  11.  
    #----------------------------------------
  12.  
     
  13.  
    #BANNER
  14.  
    banner.charset = UTF- 8#橫幅文件編碼。
  15.  
    banner.location = classpath:banner.txt#橫幅文件位置。
  16.  
     
  17.  
    #記錄
  18.  
    logging.config =#日誌配置文件的位置。例如Logback的`classpath:logback.xml`
  19.  
    logging.exception-conversion-word =%wEx#記錄異常時使用的轉換字。
  20.  
    logging.file =#記錄文件名稱。例如`myapp.log`
  21.  
    logging.level。* =#日誌級別嚴重性映射。例如`logging.level.org.springframework = DEBUG`
  22.  
    logging.path =#日誌文件的位置。例如`/ var / log`
  23.  
    logging.pattern.console =#輸出到控制檯的Appender模式。僅支持默認的登陸設置。
  24.  
    logging.pattern.file =#輸出到文件的Appender模式。僅支持默認的登陸設置。
  25.  
    logging.pattern.level =#日誌級別的Appender模式(默認% 5p)。僅支持默認的登陸設置。
  26.  
    logging.register-shutdown-hook = false#爲日誌記錄系統初始化時註冊一個關閉鉤子。
  27.  
     
  28.  
    #AOP
  29.  
    spring.aop.auto = true#添加 @EnableAspectJAutoProxy
  30.  
    spring.aop.proxy-target- class = false#與基於Java接口的標準代理( false)相比,是否建立基於子類的(CGLIB)代理( true)。
  31.  
     
  32.  
    #IDENTITY(ContextIdApplicationContextInitializer)
  33.  
    spring.application.index =#應用程序索引。
  34.  
    spring.application.name =#應用程序名稱。
  35.  
     
  36.  
    #ADMIN(SpringApplicationAdminJmxAutoConfiguration)
  37.  
    spring.application.admin.enabled = false#爲應用程序啓用管理功能。
  38.  
    spring.application.admin.jmx-name = org.springframework.boot:type = Admin,name = SpringApplication#JMX應用程序的名稱admin MBean。
  39.  
     
  40.  
    #自動配置
  41.  
    spring.autoconfigure.exclude =#要排除的自動配置類。
  42.  
     
  43.  
    #彈簧芯
  44.  
    spring.beaninfo.ignore = true#跳過對BeanInfo類的搜索。
  45.  
     
  46.  
    #SPRING CACHE(CacheProperties)
  47.  
    spring.cache.cache-names =#若是基礎高速緩存管理器支持,將建立緩存名稱的逗號分隔列表。
  48.  
    spring.cache.ehcache.config =#用於初始化EhCache的配置文件的位置。
  49.  
    spring.cache.guava.spec =#用於建立緩存的規範。檢查CacheBuilderSpec以獲取有關spec格式的更多詳細信息。
  50.  
    spring.cache.hazelcast.config =#用於初始化Hazelcast的配置文件的位置。
  51.  
    spring.cache.infinispan.config =#用於初始化Infinispan的配置文件的位置。
  52.  
    spring.cache.jcache.config =#用於初始化緩存管理器的配置文件的位置。
  53.  
    spring.cache.jcache.provider =#用於檢索符合JSR- 107的緩存管理器的CachingProvider實現的徹底限定名稱。只有在類路徑中有多個JSR- 107實現可用時才須要。
  54.  
    spring.cache.type =#緩存類型,默認根據環境自動檢測。
  55.  
     
  56.  
    #SPRING CONFIG - 僅使用環境屬性(ConfigFileApplicationListener)
  57.  
    spring.config.location =#配置文件位置。
  58.  
    spring.config.name = application#配置文件名。
  59.  
     
  60.  
    #HAZELCAST(HazelcastProperties)
  61.  
    spring.hazelcast.config =#用於初始化Hazelcast的配置文件的位置。
  62.  
     
  63.  
    #JMX
  64.  
    spring.jmx. default-domain =#JMX域名。
  65.  
    spring.jmx.enabled = true#將管理bean展現給JMX域。
  66.  
    spring.jmx.server = mbeanServer#MBeanServer bean名稱。
  67.  
     
  68.  
    #電子郵件(MailProperties)
  69.  
    spring.mail. default-encoding = UTF- 8#默認MimeMessage編碼。
  70.  
    spring.mail.host =#SMTP服務器主機。例如`smtp.example.com`
  71.  
    spring.mail.jndi-name =#會話JNDI名稱。設置時,優先於其餘郵件設置。
  72.  
    spring.mail.password =#登陸SMTP服務器的密碼。
  73.  
    spring.mail.port =#SMTP服務器端口。
  74.  
    spring.mail.properties。* =#其餘JavaMail會話屬性。
  75.  
    spring.mail.protocol = smtp#SMTP服務器使用的協議。
  76.  
    spring.mail.test-connection = false#測試郵件服務器在啓動時是否可用。
  77.  
    spring.mail.username =#登陸SMTP服務器的用戶。
  78.  
     
  79.  
    #應用程序設置(SpringApplication)
  80.  
    spring.main.banner-mode = console#用於在應用程序運行時顯示橫幅的模式。
  81.  
    spring.main.sources =#要包含在ApplicationContext中的源(類名,包名或XML資源位置)。
  82.  
    spring.main.web-environment =#在Web環境中運行應用程序(默認爲自動檢測)。
  83.  
     
  84.  
    #FILE ENCODING(FileEncodingApplicationListener)
  85.  
    spring.mandatory-file-encoding =#應用程序必須使用的預期字符編碼。
  86.  
     
  87.  
    #國際化(MessageSourceAutoConfiguration)
  88.  
    spring.messages.basename = messages#逗號分隔的基本名稱列表,每一個都遵循ResourceBundle約定。
  89.  
    spring.messages.cache-seconds = - 1#加載資源包文件緩存過時,以秒爲單位。設置爲- 1時,捆綁包將永久緩存。
  90.  
    spring.messages.encoding = UTF- 8#消息包編碼。
  91.  
    spring.messages.fallback-to-system-locale = true#若是未找到特定語言環境的文件,則設置是否回退到系統區域設置。
  92.  
     
  93.  
    #輸出
  94.  
    spring.output.ansi.enabled = detect#配置ANSI輸出(能夠是「detect」,「always」,「never」)。
  95.  
     
  96.  
    #PID文件(ApplicationPidFileWriter)
  97.  
    spring.pid.fail-on-write-error =#若是使用ApplicationPidFileWriter,則失敗,但不能寫入PID文件。
  98.  
    spring.pid.file =#要寫入的PID文件的位置(若是使用ApplicationPidFileWriter)。
  99.  
     
  100.  
    #我的資料
  101.  
    spring.profiles.active =#逗號分隔的活動配置文件列表。
  102.  
    spring.profiles.include =#無條件激活指定的逗號分隔的配置文件。
  103.  
     
  104.  
    #SENDGRID(SendGridAutoConfiguration)
  105.  
    spring.sendgrid.username =#SendGrid賬戶用戶名
  106.  
    spring.sendgrid.password =#SendGrid賬號密碼
  107.  
    spring.sendgrid.proxy.host =#SendGrid代理主機
  108.  
    spring.sendgrid.proxy.port =#SendGrid代理端口
  109.  
     
  110.  
     
  111.  
    #----------------------------------------
  112.  
    #網絡屬性
  113.  
    #----------------------------------------
  114.  
     
  115.  
    #MULTIPART(多部分屬性)
  116.  
    multipart.enabled = true#啓用對多部分上傳的支持。
  117.  
    multipart.file-size-threshold = 0#文件將寫入磁盤以後的閾值。值可使用後綴「MB」或「KB」來表示兆字節或千字節大小。
  118.  
    multipart.location =#上傳文件的中間位置。
  119.  
    multipart.max-file-size = 1Mb#最大文件大小。值可使用後綴「MB」或「KB」來表示兆字節或千字節大小。
  120.  
    multipart.max-request-size = 10Mb#最大請求大小。值可使用後綴「MB」或「KB」來表示兆字節或千字節大小。
  121.  
     
  122.  
    #嵌入式服務器配置(ServerProperties)
  123.  
    server.address =#服務器應綁定到的網絡地址。
  124.  
    server.compression.enabled = false#若是啓用了響應壓縮。
  125.  
    server.compression.excluded-user-agents =#要從壓縮中排除的用戶代理列表。
  126.  
    server.compression.mime-types =#應該壓縮的MIME類型的逗號分隔列表。例如`text / html,text / css,application / json`
  127.  
    server.compression.min-response-size =#要執行壓縮所需的最小響應大小。例如 2048
  128.  
    server.context-parameters。* =#Servlet上下文初始化參數。例如`server.context-parameters.a = alpha`
  129.  
    server.context-path =#應用程序的上下文路徑。
  130.  
    server.display-name = application#顯示應用程序的名稱。
  131.  
    server.error.include-stacktrace = never#什麼時候包含「stacktrace」屬性。
  132.  
    server.error.path = / error#錯誤控制器的路徑。
  133.  
    server.error.whitelabel.enabled = true#在服務器錯誤的狀況下,啓用瀏覽器中顯示的默認錯誤頁面。
  134.  
    server.jsp-servlet.class-name = org.apache.jasper.servlet.JspServlet#JSP servlet的類名稱。
  135.  
    server.jsp-servlet.init-parameters。* =#用於配置JSP servlet的初始參數
  136.  
    server.jsp-servlet.registered = true#JSP servlet是否已註冊
  137.  
    server.port = 8080#服務器HTTP端口。
  138.  
    server.server-header =#服務器響應頭中發送的值(若是爲空,則使用servlet容器默認值)
  139.  
    server.servlet-path = /#主調度程序servlet的路徑。
  140.  
    server.session.cookie.comment =#會話cookie的註釋。
  141.  
    server.session.cookie.domain =#會話cookie的域名。
  142.  
    server.session.cookie.http-only =#會話cookie的「HttpOnly」標誌。
  143.  
    server.session.cookie.max-age =#以秒爲單位的會話cookie的最大時間。
  144.  
    server.session.cookie.name =#會話cookie名稱。
  145.  
    server.session.cookie.path =#會話cookie的路徑。
  146.  
    server.session.cookie.secure =#會話cookie的「安全」標誌。
  147.  
    server.session.persistent = false#在從新啓動之間保留會話數據。
  148.  
    server.session.store-dir =#用於存儲會話數據的目錄。
  149.  
    server.session.timeout =#以秒爲單位的會話超時。
  150.  
    server.session.tracking-modes =#會話跟蹤模式(如下一項或多項:「cookie」,「url」,「ssl」)。
  151.  
    server.ssl.ciphers =#支持的SSL密碼。
  152.  
    server.ssl.client-auth =#是否須要客戶端身份驗證(「須要」)或須要(「須要」)。須要信任商店。
  153.  
    server.ssl.enabled =#
  154.  
    server.ssl.key-alias =#
  155.  
    server.ssl.key-password =#
  156.  
    server.ssl.key-store =#
  157.  
    server.ssl.key-store-password =#
  158.  
    server.ssl.key-store-provider =#
  159.  
    server.ssl.key-store-type =#
  160.  
    server.ssl.protocol =#
  161.  
    server.ssl.trust-store =#
  162.  
    server.ssl.trust-store-password =#
  163.  
    server.ssl.trust-store-provider =#
  164.  
    server.ssl.trust-store-type =#
  165.  
    server.tomcat.accesslog.directory = logs#建立日誌文件的目錄。能夠相對於tomcat的基本目錄或絕對。
  166.  
    server.tomcat.accesslog.enabled = false#啓用訪問日誌。
  167.  
    server.tomcat.accesslog.pattern = common#訪問日誌的格式模式。
  168.  
    server.tomcat.accesslog.prefix = access_log#記錄文件名前綴。
  169.  
    server.tomcat.accesslog.suffix = .log#日誌文件名後綴。
  170.  
    server.tomcat.background-processor-delay = 30#調用backgroundProcess方法之間的延遲(秒)。
  171.  
    server.tomcat.basedir =#Tomcat基本目錄。若是未指定,則將使用臨時目錄。
  172.  
    server.tomcat.internal-proxies= 10 \\ d { 1, 3} \\ d { 1, 3} \\ d { 1, 3} | \\
  173.  
    192 \\ 168 \\ d { 1, 3} \\ d { 1, 3} | \\
  174.  
    169 \\ 254 \\ d { 1, 3} \\ d { 1, 3} | \\
  175.  
    127 \\ d { 1, 3} \\ d { 1, 3} \\ d { 1, 3} | \\
  176.  
    172 \\ 1 [ 6- 9] { 1} \\ d { 1, 3} \\ d { 1, 3} |。。\\
  177.  
    172 \\ 2 [ 0- 9] { 1} \\ d { 1, 3} \\ d { 1, 3} |。。\\
  178.  
    172 \\。 3 [ 0- 1] { 1} \\。\\ d { 1, 3} \\。\\ d { 1, 3}#匹配可信IP地址的正則表達式。
  179.  
    server.tomcat.max-http-header-size = 0#HTTP消息頭的最大字節數。
  180.  
    server.tomcat.max-threads = 0#工做線程的最大數量。
  181.  
    server.tomcat.port-header = X-Forwarded-Port#用於覆蓋原始端口值的HTTP標頭的名稱。
  182.  
    server.tomcat.protocol-header =#保存傳入協議的頭部,一般名爲「X-Forwarded-Proto」。
  183.  
    server.tomcat.protocol-header-https-value = https#指示傳入請求使用SSL的協議頭的值。
  184.  
    server.tomcat.remote-ip-header =#從中提取遠程IP的http頭的名稱。例如`X-FORWARDED-FOR`
  185.  
    server.tomcat.uri-encoding = UTF- 8#用於解碼URI的字符編碼。
  186.  
    server.undertow.accesslog.dir =#取消訪問日誌目錄。
  187.  
    server.undertow.accesslog.enabled = false#啓用訪問日誌。
  188.  
    server.undertow.accesslog.pattern = common#訪問日誌的格式模式。
  189.  
    server.undertow.buffer-size =#每一個緩衝區的大小(以字節爲單位)。
  190.  
    server.undertow.buffers-per-region =#每一個區域的緩衝區數量。
  191.  
    server.undertow.direct-buffers =#在Java堆外分配緩衝區。
  192.  
    server.undertow.io-threads =#爲worker建立的I / O線程數量。
  193.  
    server.undertow.worker-threads =#工做線程數。
  194.  
    server.use-forward-headers =#若是X-Forwarded- *標頭應該應用於HttpRequest。
  195.  
     
  196.  
    #FREEMARKER(FreeMarkerAutoConfiguration)
  197.  
    spring.freemarker.allow-request-override = false#設置是否容許HttpServletRequest屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。
  198.  
    spring.freemarker.allow-session-override = false#設置是否容許HttpSession屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。
  199.  
    spring.freemarker.cache = false#啓用模板緩存。
  200.  
    spring.freemarker.charset = UTF- 8#模板編碼。
  201.  
    spring.freemarker.check-template-location = true#檢查模板位置是否存在。
  202.  
    spring.freemarker.content-type = text / html#Content-Type值。
  203.  
    spring.freemarker.enabled = true#爲此技術啓用MVC視圖分辨率。
  204.  
    spring.freemarker.expose-request-attributes = false#設置在與模板合併以前是否應將全部請求屬性添加到模型中。
  205.  
    spring.freemarker.expose-session-attributes = false#設置在與模板合併以前是否應將全部HttpSession屬性添加到模型中。
  206.  
    spring.freemarker.expose-spring-macro-helpers = true#設置是否公開名爲「springMacroRequestContext」的供Spring的宏庫使用的RequestContext。
  207.  
    spring.freemarker.prefer-file-system-access = true#優先選擇模板加載的文件系統訪問權限。文件系統訪問使模板更改的熱檢測成爲可能。
  208.  
    spring.freemarker.prefix =#構建URL時預先查看名稱的前綴。
  209.  
    spring.freemarker.request-context-attribute =#全部視圖的RequestContext屬性的名稱。
  210.  
    spring.freemarker.settings.* =#衆所周知的FreeMarker鍵將被傳遞給FreeMarker的配置。
  211.  
    spring.freemarker.suffix =#在構建URL時被附加到查看名稱的後綴。
  212.  
    spring.freemarker.template-loader-path = classpath:/ templates /#逗號分隔的模板路徑列表。
  213.  
    spring.freemarker.view-names =#能夠解析的視圖名稱的白名單。
  214.  
     
  215.  
    #GROOVY模板(GroovyTemplateAutoConfiguration)
  216.  
    spring.groovy.template.allow-request-override = false#設置是否容許HttpServletRequest屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。
  217.  
    spring.groovy.template.allow-session-override = false#設置是否容許HttpSession屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。
  218.  
    spring.groovy.template.cache =#啓用模板緩存。
  219.  
    spring.groovy.template.charset = UTF- 8#模板編碼。
  220.  
    spring.groovy.template.check-template-location = true#檢查模板位置是否存在。
  221.  
    spring.groovy.template.configuration。* =#請參閱GroovyMarkupConfigurer
  222.  
    spring.groovy.template.content-type = test / html#Content-Type值。
  223.  
    spring.groovy.template.enabled = true#爲此技術啓用MVC視圖分辨率。
  224.  
    spring.groovy.template.expose-request-attributes = false#設置在與模板合併以前是否應將全部請求屬性添加到模型中。
  225.  
    spring.groovy.template.expose-session-attributes = false#設置在與模板合併以前是否應將全部HttpSession屬性添加到模型中。
  226.  
    spring.groovy.template.expose-spring-macro-helpers = true#設置是否公開一個供Spring的宏庫使用的名爲「springMacroRequestContext」的RequestContext。
  227.  
    spring.groovy.template.prefix =#構建URL時預先查看名稱的前綴。
  228.  
    spring.groovy.template.request-context-attribute =#全部視圖的RequestContext屬性的名稱。
  229.  
    spring.groovy.template.resource-loader-path = classpath:/ templates /#模板路徑。
  230.  
    spring.groovy.template.suffix = .tpl#在構建URL時被附加到視圖名稱後綴。
  231.  
    spring.groovy.template.view-names =#能夠解析的視圖名稱的白名單。
  232.  
     
  233.  
    #春天HATEOAS(Hateoas屬性)
  234.  
    spring.hateoas.use-hal-as- default-json-media-type = true#指定應用程序/ hal + json響應是否應發送到接受application / json的請求。
  235.  
     
  236.  
    #HTTP消息轉換
  237.  
    spring.http.converters.preferred-json-mapper = jackson#用於HTTP消息轉換的首選JSON映射器。設置爲「gson」來強制使用Gson,當它和Jackson都在類路徑中時。
  238.  
     
  239.  
    #HTTP編碼(HttpEncodingProperties)
  240.  
    spring.http.encoding.charset = UTF- 8#HTTP請求和響應的字符集。若是未明確設置,則添加到「Content-Type」標題中。
  241.  
    spring.http.encoding.enabled = true#啓用http編碼支持。
  242.  
    spring.http.encoding.force = true#強制編碼到HTTP請求和響應上配置的字符集。
  243.  
     
  244.  
    #傑克遜(JacksonProperties)
  245.  
    spring.jackson.date-format =#日期格式字符串或徹底合格的日期格式類名稱。例如`yyyy-MM-dd HH:mm:ss`。
  246.  
    spring.jackson.deserialization。* =#傑克遜開/關功能,影響Java對象反序列化的方式。
  247.  
    spring.jackson.generator。* =#生成器的Jackson開/關功能。
  248.  
    spring.jackson.joda-date-time-format =#喬達日期時間格式字符串。若是未配置,若是使用格式字符串配置,則將使用「日期格式」做爲後備。
  249.  
    spring.jackson.locale =#用於格式化的區域設置。
  250.  
    spring.jackson.mapper。* =#傑克遜通用開/關功能。
  251.  
    spring.jackson.parser。* =#解析器的Jackson開/關功能。
  252.  
    spring.jackson.property-naming-strategy =#Jackson的PropertyNamingStrategy上的常量之一。也能夠是PropertyNamingStrategy子類的徹底限定類名。
  253.  
    spring.jackson.serialization。* =#傑克遜開/關功能,影響Java對象序列化的方式。
  254.  
    spring.jackson.serialization-inclusion =#在序列化過程當中控制屬性的包含。使用Jackson的JsonInclude.Include枚舉中的一個值進行配置。
  255.  
    spring.jackson.time-zone =#格式化日期時使用的時區。例如`America / Los_Angeles`
  256.  
     
  257.  
    #澤西(JerseyProperties)
  258.  
    spring.jersey.application-path =#做爲應用程序的基本URI的路徑。若是指定,則覆蓋「 @ApplicationPath」的值。
  259.  
    spring.jersey.filter.order = 0#Jersey過濾器鏈順序。
  260.  
    spring.jersey.init。* =#初始化參數經過servlet或過濾器傳遞給Jersey。
  261.  
    spring.jersey.type = servlet#Jersey集成類型。能夠是「servlet」或「filter」。
  262.  
     
  263.  
    #SPRING MOBILE DEVICE VIEWS(DeviceDelegatingViewResolverAutoConfiguration)
  264.  
    spring.mobile.devicedelegatingviewresolver.enable-fallback = false#啓用對回退解析的支持。
  265.  
    spring.mobile.devicedelegatingviewresolver.enabled = false#啓用設備視圖解析器。
  266.  
    spring.mobile.devicedelegatingviewresolver.mobile-prefix = mobile /#預設爲查看移動設備名稱的前綴。
  267.  
    spring.mobile.devicedelegatingviewresolver.mobile-suffix =#附加到移動設備視圖名稱的後綴。
  268.  
    spring.mobile.devicedelegatingviewresolver.normal-prefix =#用於查看普通設備名稱的前綴。
  269.  
    spring.mobile.devicedelegatingviewresolver.normal-suffix =#附加到正常設備的視圖名稱後綴。
  270.  
    spring.mobile.devicedelegatingviewresolver.tablet-prefix = tablet /#預設爲查看平板設備名稱的前綴。
  271.  
    spring.mobile.devicedelegatingviewresolver.tablet-suffix =#附加到平板設備的查看名稱的後綴。
  272.  
     
  273.  
    #SPRING MOBILE SITE PREFERENCE(SitePreferenceAutoConfiguration)
  274.  
    spring.mobile.sitepreference.enabled = true#啓用SitePreferenceHandler。
  275.  
     
  276.  
    #MUSTACHE模板(MustacheAutoConfiguration)
  277.  
    spring.mustache.cache = false#啓用模板緩存。
  278.  
    spring.mustache.charset = UTF- 8#模板編碼。
  279.  
    spring.mustache.check-template-location = true#檢查模板位置是否存在。
  280.  
    spring.mustache.content-type = text / html#Content-Type值。
  281.  
    spring.mustache.enabled = true#啓用此技術的MVC視圖分辨率。
  282.  
    spring.mustache.prefix = classpath:/ templates /#應用於模板名稱的前綴。
  283.  
    spring.mustache.suffix = .html#應用於模板名稱的後綴。
  284.  
    spring.mustache.view-names =#能夠解析的視圖名稱的白名單。
  285.  
     
  286.  
    #SPRING MVC(WebMvcProperties)
  287.  
    spring.mvc.async.request-timeout =#異步請求處理超時以前的時間(以毫秒爲單位)。
  288.  
    spring.mvc.date-format =#要使用的日期格式。例如`dd / MM / yyyy`。
  289.  
    spring.mvc.dispatch-trace-request = false#將TRACE請求分派給FrameworkServlet doService方法。
  290.  
    spring.mvc.dispatch-options-request = false#將OPTIONS請求分派給FrameworkServlet的doService方法。
  291.  
    spring.mvc.favicon.enabled = true#啓用favicon.ico的解析。
  292.  
    spring.mvc.formcontent.putfilter.enabled = true#啓用Spring的HttpPutFormContentFilter。
  293.  
    spring.mvc.ignore- default-model-on-redirect = true#若是在重定向場景中應忽略「默認」模型的內容。
  294.  
    spring.mvc.locale =#使用的語言環境。
  295.  
    spring.mvc.media-types。* =#將文件擴展名映射到媒體類型以進行內容協商。
  296.  
    spring.mvc.message-codes-resolver-format =#消息代碼的格式化策略。例如`PREFIX_ERROR_CODE`。
  297.  
    spring.mvc. static-path-pattern = / **#用於靜態資源的路徑模式。
  298.  
    spring.mvc.throw-exception- if-no-handler-found = false#若是發現沒有處理程序處理請求,則應拋出「NoHandlerFoundException」。
  299.  
    spring.mvc.view.prefix =#Spring MVC視圖前綴。
  300.  
    spring.mvc.view.suffix =#Spring MVC視圖後綴。
  301.  
     
  302.  
    #春季資源處理(ResourceProperties)
  303.  
    spring.resources.add-mappings = true#啓用默認資源處理。
  304.  
    spring.resources.cache-period =#資源處理程序服務的資源的緩存期,以秒爲單位。
  305.  
    spring.resources.chain.cache = true#在資源鏈中啓用緩存。
  306.  
    spring.resources.chain.enabled =#啓用Spring資源處理鏈。默認狀況下禁用,除非至少有一種策略已啓用。
  307.  
    spring.resources.chain.html-application-cache = false#啓用HTML5應用程序緩存清單重寫。
  308.  
    spring.resources.chain.strategy.content.enabled = false#啓用內容版本策略。
  309.  
    spring.resources.chain.strategy.content.paths = / **#應用於版本策略的逗號分隔的模式列表。
  310.  
    spring.resources.chain.strategy.fixed.enabled = false#啓用固定版本策略。
  311.  
    spring.resources.chain.strategy.fixed.paths =#應用於版本策略的逗號分隔模式列表。
  312.  
    spring.resources.chain.strategy.fixed.version =#用於版本策略的版本字符串。
  313.  
    spring.resources. static-locations = classpath:/ META-INF / resources /,classpath:/ resources /,classpath:/ static /,classpath:/ public /#靜態資源的位置。
  314.  
     
  315.  
    #SPRING SOCIAL(SocialWebAutoConfiguration)
  316.  
    spring.social.auto-connection-views = false#爲支持的提供商啓用鏈接狀態視圖。
  317.  
     
  318.  
    #SPRING SOCIAL FACEBOOK(FacebookAutoConfiguration)
  319.  
    spring.social.facebook.app-id =#您的應用程序的Facebook應用程序ID
  320.  
    spring.social.facebook.app-secret =#你的應用程序的Facebook App Secret
  321.  
     
  322.  
    #SPRING SOCIAL LINKEDIN(LinkedInAutoConfiguration)
  323.  
    spring.social.linkedin.app-id =#您的應用程序的LinkedIn應用程序ID
  324.  
    spring.social.linkedin.app-secret =#你的應用的LinkedIn App Secret
  325.  
     
  326.  
    #SPRING SOCIAL TWITTER(TwitterAutoConfiguration)
  327.  
    spring.social.twitter.app-id =#你的應用程序的Twitter應用程序ID
  328.  
    spring.social.twitter.app-secret =#你的應用程序的Twitter App Secret
  329.  
     
  330.  
    #THYMELEAF(ThymeleafAutoConfiguration)
  331.  
    spring.thymeleaf.cache = true#啓用模板緩存。
  332.  
    spring.thymeleaf.check-template-location = true#檢查模板位置是否存在。
  333.  
    spring.thymeleaf.content-type = text / html#Content-Type值。
  334.  
    spring.thymeleaf.enabled = true#啓用MVC Thymeleaf視圖分辨率。
  335.  
    spring.thymeleaf.encoding = UTF- 8#模板編碼。
  336.  
    spring.thymeleaf.excluded-view-names =#應該從分辨率中排除的逗號分隔的視圖名稱列表。
  337.  
    spring.thymeleaf.mode = HTML5#應用於模板的模板模式。另請參閱StandardTemplateModeHandlers。
  338.  
    spring.thymeleaf.prefix = classpath:/ templates /#構建URL時預先查看名稱的前綴。
  339.  
    spring.thymeleaf.suffix = .html#在構建URL時附加到視圖名稱的後綴。
  340.  
    spring.thymeleaf.template-resolver-order =#鏈中模板解析器的順序。
  341.  
    spring.thymeleaf.view-names =#能夠解析的視圖名稱的逗號分隔列表。
  342.  
     
  343.  
    #速度模板(VelocityAutoConfiguration)
  344.  
    spring.velocity.allow-request-override = false#設置是否容許HttpServletRequest屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。
  345.  
    spring.velocity.allow-session-override = false#設置是否容許HttpSession屬性覆蓋(隱藏)具備相同名稱的控制器生成的模型屬性。
  346.  
    spring.velocity.cache =#啓用模板緩存。
  347.  
    spring.velocity.charset = UTF- 8#模板編碼。
  348.  
    spring.velocity.check-template-location = true#檢查模板位置是否存在。
  349.  
    spring.velocity.content-type = text / html#Content-Type值。
  350.  
    spring.velocity.date-tool-attribute =#要在視圖的Velocity上下文中公開的DateTool輔助對象的名稱。
  351.  
    spring.velocity.enabled = true#爲此技術啓用MVC視圖分辨率。
  352.  
    spring.velocity.expose-request-attributes = false#設置在與模板合併以前是否應將全部請求屬性添加到模型中。
  353.  
    spring.velocity.expose-session-attributes = false#設置在與模板合併以前是否應將全部HttpSession屬性添加到模型中。
  354.  
    spring.velocity.expose-spring-macro-helpers = true#設置是否公開名爲「springMacroRequestContext」的供Spring的宏庫使用的RequestContext。
  355.  
    spring.velocity.number-tool-attribute =#要在視圖的Velocity上下文中公開的NumberTool幫助程序對象的名稱。
  356.  
    spring.velocity.prefer-file-system-access = true#首選文件系統訪問模板加載。文件系統訪問使模板更改的熱檢測成爲可能。
  357.  
    spring.velocity.prefix =#構建URL時預先查看名稱的前綴。
  358.  
    spring.velocity.properties.* =#附加速度屬性。
  359.  
    spring.velocity.request-context-attribute =#全部視圖的RequestContext屬性的名稱。
  360.  
    spring.velocity.resource-loader-path = classpath:/ templates /#模板路徑。
  361.  
    spring.velocity.suffix = .vm#構建URL時附加到視圖名稱的後綴。
  362.  
    spring.velocity.toolbox-config-location =#Velocity Toolbox配置位置。例如`/ WEB-INF / toolbox.xml`
  363.  
    spring.velocity.view-names =#能夠解析的視圖名稱的白名單。
  364.  
     
  365.  
     
  366.  
     
  367.  
    #----------------------------------------
  368.  
    #安全特性
  369.  
    #----------------------------------------
  370.  
    #安全(SecurityProperties)
  371.  
    security.basic.authorize-mode = role#安全受權模式。
  372.  
    security.basic.enabled = true#啓用基本認證。
  373.  
    security.basic.path = / **#以逗號分隔的安全路徑列表。
  374.  
    security.basic.realm = Spring#HTTP基本領域名稱。
  375.  
    security.enable-csrf = false#啓用跨站點請求僞造支持。
  376.  
    security.filter-order = 0#安全過濾器鏈順序。
  377.  
    security.filter-dispatcher-types = ASYNC,FORWARD,INCLUDE,REQUEST#安全性篩選器鏈調度程序類型。
  378.  
    security.headers.cache = true#啓用緩存控制HTTP標頭。
  379.  
    security.headers.content-type = true#啓用「X-Content-Type-Options」標題。
  380.  
    security.headers.frame = true#啓用「X-Frame-Options」標題。
  381.  
    security.headers.hsts =#HTTP嚴格傳輸安全(HSTS)模式(無,域,所有)。
  382.  
    security.headers.xss = true#啓用跨站點腳本(XSS)保護。
  383.  
    security.ignored =#從逗號分隔的默認安全路徑中排除的路徑列表。
  384.  
    security.require-ssl = false#爲全部請求啓用安全通道。
  385.  
    security.sessions =無狀態#會話建立策略(永遠,從不,if_required,無狀態)。
  386.  
    security.user.name = user#默認用戶名。
  387.  
    security.user.password =#默認用戶名的密碼。默認狀況下會在啓動時記錄隨機密碼。
  388.  
    security.user.role = USER#授予默認用戶名的角色。
  389.  
     
  390.  
    #SECURITY OAUTH2客戶端(OAuth2ClientProperties
  391.  
    security.oauth2.client.client-id =#OAuth2客戶端ID。
  392.  
    security.oauth2.client.client-secret =#OAuth2客戶端密鑰。隨機祕密是默認生成的
  393.  
     
  394.  
    #SECURITY OAUTH2 RESOURCES(ResourceServerProperties
  395.  
    security.oauth2.resource.id =#資源的標識符。
  396.  
    security.oauth2.resource.jwt.key-uri =#JWT令牌的URI。若是該值不可用而且密鑰是公開的,能夠設置。
  397.  
    security.oauth2.resource.jwt.key-value =#JWT令牌的驗證密鑰。能夠是對稱密鑰或PEM編碼的RSA公鑰。
  398.  
    security.oauth2.resource.prefer-token-info = true#使用token info,能夠設置爲 false來使用用戶信息。
  399.  
    security.oauth2.resource.service-id =資源#
  400.  
    security.oauth2.resource.token-info-uri =#令牌解碼端點的URI。
  401.  
    security.oauth2.resource.token-type =#使用userInfoUri時要發送的令牌類型。
  402.  
    security.oauth2.resource.user-info-uri =#用戶端點的URI。
  403.  
     
  404.  
    #SECURITY OAUTH2 SSO(OAuth2SsoProperties
  405.  
    security.oauth2.sso.filter-order =#若是不提供顯式的WebSecurityConfigurerAdapter
  406.  
    security.oauth2.sso.login-path = / login#登陸頁面的路徑,即觸發重定向到OAuth2受權服務器的路徑
  407.  
     
  408.  
     
  409.  
    #----------------------------------------
  410.  
    #數據屬性
  411.  
    #----------------------------------------
  412.  
     
  413.  
    #FLYWAY(FlywayProperties)
  414.  
    flyway.baseline-description =#
  415.  
    flyway.baseline-version = 1#版本開始遷移
  416.  
    flyway.baseline-on-migrate =#
  417.  
    flyway.check-location = false#檢查是否存在遷移腳本位置。
  418.  
    flyway.clean-on-validation-error =#
  419.  
    flyway.enabled = true#啓用飛路。
  420.  
    flyway.encoding =#
  421.  
    flyway.ignore-failed-future-migration =#
  422.  
    flyway.init-sqls =#SQL語句在獲取它以後當即執行以初始化鏈接。
  423.  
    flyway.locations = classpath:db / migration#遷移腳本的位置
  424.  
    flyway.out-of-order =#
  425.  
    flyway.password =#若是您但願Flyway建立本身的DataSource,則使用JDBC密碼
  426.  
    flyway.placeholder-prefix =#
  427.  
    flyway.placeholder-replacement =#
  428.  
    flyway.placeholder-suffix =#
  429.  
    flyway.placeholders。* =#
  430.  
    flyway.schemas =#模式更新
  431.  
    flyway.sql-migration-prefix = V#
  432.  
    flyway.sql-migration-separator =#
  433.  
    flyway.sql-migration-suffix = .sql#
  434.  
    flyway.table =#
  435.  
    flyway.url =#要遷移的數據庫的JDBC URL。若是未設置,則使用主要配置的數據源。
  436.  
    flyway.user =#登陸要遷移的數據庫的用戶。
  437.  
    flyway.validate-on-migrate =#
  438.  
     
  439.  
    #LIQUIBASE(LiquibaseProperties)
  440.  
    liquibase.change-log = classpath:/db/changelog/db.changelog-master.yaml#更改日誌配置路徑。
  441.  
    liquibase.check-change-log-location = true#檢查更改日誌位置是否存在。
  442.  
    liquibase.contexts =#使用運行時上下文的逗號分隔列表。
  443.  
    liquibase. default-schema =#默認數據庫模式。
  444.  
    liquibase.drop-first = false#首先刪除數據庫模式。
  445.  
    liquibase.enabled = true#啓用liquibase支持。
  446.  
    liquibase.labels =#使用運行時標籤的逗號分隔列表。
  447.  
    liquibase.parameters。* =#更改日誌參數。
  448.  
    liquibase.password =#登陸要遷移的數據庫的密碼。
  449.  
    liquibase.url =#要遷移的數據庫的JDBC URL。若是未設置,則使用主要配置的數據源。
  450.  
    liquibase.user =#登陸要遷移的數據庫的用戶。
  451.  
     
  452.  
    #DAO(PersistenceExceptionTranslationAutoConfiguration)
  453.  
    spring.dao.exceptiontranslation.enabled = true#啓用PersistenceExceptionTranslationPostProcessor。
  454.  
     
  455.  
    #CASSANDRA(CassandraProperties)
  456.  
    spring.data.cassandra.cluster-name =#Cassandra集羣的名稱。
  457.  
    spring.data.cassandra.compression =#Cassandra二進制協議支持的壓縮。
  458.  
    spring.data.cassandra.connect-timeout-millis =#套接字選項:鏈接超時。
  459.  
    spring.data.cassandra.consistency-level =#查詢一致性級別。
  460.  
    spring.data.cassandra.contact-points = localhost#羣集節點地址的逗號分隔列表。
  461.  
    spring.data.cassandra.fetch-size =#查詢默認獲取大小。
  462.  
    spring.data.cassandra.keyspace-name =#使用的Keyspace名稱。
  463.  
    spring.data.cassandra.load-balancing-policy =#負載均衡策略的類名稱。
  464.  
    spring.data.cassandra.port =#Cassandra服務器的端口。
  465.  
    spring.data.cassandra.password =#登陸服務器的密碼。
  466.  
    spring.data.cassandra.read-timeout-millis =#套接字選項:讀取超時。
  467.  
    spring.data.cassandra.reconnection-policy =#從新鏈接策略類。
  468.  
    spring.data.cassandra.retry-policy =#重試策略的類名稱。
  469.  
    spring.data.cassandra.serial-consistency-level =#查詢串行一致性級別。
  470.  
    spring.data.cassandra.ssl = false#啓用SSL支持。
  471.  
    spring.data.cassandra.username =#服務器的登陸用戶。
  472.  
     
  473.  
    #ELASTICSEARCH(ElasticsearchProperties)
  474.  
    spring.data.elasticsearch.cluster-name = elasticsearch#Elasticsearch集羣名稱。
  475.  
    spring.data.elasticsearch.cluster-nodes =#以逗號分隔的集羣節點地址列表。若是未指定,則啓動客戶機節點。
  476.  
    spring.data.elasticsearch.properties。* =#用於配置客戶端的其餘屬性。
  477.  
    spring.data.elasticsearch.repositories.enabled = true#啓用Elasticsearch存儲庫。
  478.  
     
  479.  
    #MONGODB(MongoProperties)
  480.  
    spring.data.mongodb.authentication-database =#認證數據庫名稱。
  481.  
    spring.data.mongodb.database = test#數據庫名稱。
  482.  
    spring.data.mongodb.field -naming-strategy =#要使用的FieldNamingStrategy的徹底限定名稱。
  483.  
    spring.data.mongodb.grid-fs-database =#GridFS數據庫名稱。
  484.  
    spring.data.mongodb.host = localhost#Mongo服務器主機。
  485.  
    spring.data.mongodb.password =#登陸mongo服務器的密碼。
  486.  
    spring.data.mongodb.port = 27017#Mongo服務器端口。
  487.  
    spring.data.mongodb.repositories.enabled = true#啓用Mongo存儲庫。
  488.  
    spring.data.mongodb.uri = mongodb: // localhost / test#Mongo數據庫URI。設置時,主機和端口將被忽略。
  489.  
    spring.data.mongodb.username =#mongo服務器的登陸用戶。
  490.  
     
  491.  
    #數據REST(RepositoryRestProperties)
  492.  
    spring.data.rest.base-path =#Spring Data REST用於公開資源庫資源的基本路徑。
  493.  
    spring.data.rest. default-page-size =#頁面的默認大小。
  494.  
    spring.data.rest.enable- enum-translation =#經過Spring Data REST默認資源包啓用枚舉值轉換。
  495.  
    spring.data.rest.limit-param-name =#URL查詢字符串參數的名稱,表示一次返回多少個結果。
  496.  
    spring.data.rest.max-page-size =#頁面的最大尺寸。
  497.  
    spring.data.rest.page-param-name =#指示要返回哪一個頁面的URL查詢字符串參數的名稱。
  498.  
    spring.data.rest.return-body-on-create =#建立實體後返回響應主體。
  499.  
    spring.data.rest.return-body-on-update =#更新實體後返回響應主體。
  500.  
    spring.data.rest.sort-param-name =#指示排序結果的方向的URL查詢字符串參數的名稱。
  501.  
     
  502.  
    #SOLR(SolrProperties)
  503.  
    spring.data.solr.host = http: //127.0.0.1:8983 / solr#Solr主機。若是設置了「zk-host」,則忽略。
  504.  
    spring.data.solr.repositories.enabled = true#啓用Solr存儲庫。
  505.  
    spring.data.solr.zk-host =#HOST:PORT形式的#ZooKeeper主機地址。
  506.  
     
  507.  
    #DATASOURCE(DataSourceAutoConfiguration&DataSourceProperties)
  508.  
    spring.datasource. continue-on-error = false#若是在初始化數據庫時發生錯誤,請不要中止。
  509.  
    spring.datasource.data =#數據(DML)腳本資源參考。
  510.  
    spring.datasource.driver- class-name =#JDBC驅動程序的徹底限定名稱。默認狀況下基於URL自動檢測。
  511.  
    spring.datasource.initialize = true#使用 'data.sql'填充數據庫。
  512.  
    spring.datasource.jmx-enabled = false#啓用JMX支持(若是由底層池提供)。
  513.  
    spring.datasource.jndi-name =#數據源的JNDI位置。設置時會忽略類,網址,用戶名和密碼。
  514.  
    spring.datasource.max-active =#例如 100
  515.  
    spring.datasource.max-idle =#例如 8
  516.  
    spring.datasource.max等待=
  517.  
    spring.datasource.min-evictable空閒時間-米利斯=
  518.  
    spring.datasource.min空閒= 8
  519.  
    spring.datasource.name = testdb#數據源的名稱。
  520.  
    spring.datasource.password =#登陸數據庫的密碼。
  521.  
    spring.datasource.platform = all#架構資源中使用的平臺(架構 - $ {platform} .sql)。
  522.  
    spring.datasource.schema =#架構(DDL)腳本資源引用。
  523.  
    spring.datasource.separator =; #SQL初始化腳本中的語句分隔符。
  524.  
    spring.datasource.sql-script-encoding =#SQL腳本編碼。
  525.  
    spring.datasource.test-on-borrow =#例如` false`
  526.  
    spring.datasource.test-on- return =#例如` false`
  527.  
    spring.datasource.test- while-idle =#
  528.  
    spring.datasource.time-between-eviction-runs-millis = 1
  529.  
    spring.datasource.type =#要使用的鏈接池實現的徹底限定名稱。默認狀況下,它是從類路徑中自動檢測的。
  530.  
    spring.datasource.url =#數據庫的JDBC URL。
  531.  
    spring.datasource.username =
  532.  
    spring.datasource.validation查詢=
  533.  
     
  534.  
    #H2 Web控制檯(H2ConsoleProperties)
  535.  
    spring.h2.console.enabled = false#啓用控制檯。
  536.  
    spring.h2.console.path = / h2-console#控制檯可用的路徑。
  537.  
     
  538.  
    #JOOQ(JooqAutoConfiguration)
  539.  
    spring.jooq.sql-dialect =#與配置的數據源進行通訊時使用的SQLDialect JOOQ。例如`POSTGRES`
  540.  
     
  541.  
    #JPA(JpaBaseConfiguration,HibernateJpaAutoConfiguration)
  542.  
    spring.data.jpa.repositories.enabled = true#啓用JPA存儲庫。
  543.  
    spring.jpa.database =#目標數據庫進行操做,默認爲自動檢測。可使用「databasePlatform」屬性進行替代設置。
  544.  
    spring.jpa.database-platform =#要運行的目標數據庫的名稱,默認爲自動檢測。也可使用「數據庫」枚舉進行設置。
  545.  
    spring.jpa.generate-ddl = false#啓動時初始化模式。
  546.  
    spring.jpa.hibernate.ddl-auto =#DDL模式。這其實是「hibernate.hbm2ddl.auto」屬性的快捷方式。使用嵌入式數據庫時默認爲「建立 - 刪除」,不然爲「無」。
  547.  
    spring.jpa.hibernate.naming-strategy =#命名策略徹底限定名稱。
  548.  
    spring.jpa.open-in-view = true#註冊OpenEntityManagerInViewInterceptor。將JPA EntityManager綁定到線程,以完成請求的整個處理。
  549.  
    spring.jpa.properties。* =#在JPA提供程序上設置的其餘本機屬性。
  550.  
    spring.jpa.show-sql = false#啓用SQL語句的日誌記錄。
  551.  
     
  552.  
    #JTA(JtaAutoConfiguration)
  553.  
    spring.jta.log-dir =#事務日誌目錄。
  554.  
     
  555.  
    #ATOMIKOS
  556.  
    spring.jta.checkpoint-interval = 500#檢查點之間的間隔。
  557.  
    spring.jta.console-file-count = 1#能夠建立的調試日誌文件的數量。
  558.  
    spring.jta.console-file-limit = - 1#調試日誌文件中最多能夠存儲多少個字節。
  559.  
    spring.jta.console-file-name = tm.out#調試日誌文件名。
  560.  
    spring.jta.console-log-level =#控制檯日誌級別。
  561.  
    spring.jta. default-jta-timeout = 10000#JTA事務的默認超時。
  562.  
    spring.jta.enable-logging = true#啓用磁盤日誌記錄。
  563.  
    spring.jta.force-shutdown-on-vm-exit = false#指定VM關閉是否應該觸發強制關閉事務內核。
  564.  
    spring.jta.log-base-dir =#應該存儲日誌文件的目錄。
  565.  
    spring.jta.log-base-name = tmlog#事務日誌文件的基本名稱。
  566.  
    spring.jta.max-actives = 50#活動事務的最大數量。
  567.  
    spring.jta.max-timeout = 300000#能夠容許事務處理的最大超時時間(以毫秒爲單位)。
  568.  
    spring.jta.output-dir =#用於存儲調試日誌文件的目錄。
  569.  
    spring.jta.serial-jta-transactions = true#指定是否應儘量地加入子交易。
  570.  
    spring.jta.service =#應該啓動的事務管理器實現。
  571.  
    spring.jta.threaded-two-phase-commit = true#在參與資源上使用不一樣(併發)線程進行兩階段提交。
  572.  
    spring.jta.transaction-manager-unique-name =#事務管理器的惟一名稱。
  573.  
    spring.jta.atomikos.connectionfactory.borrow-connection-timeout = 30#用於從池中借用鏈接的超時,以秒爲單位。
  574.  
    spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag = true#建立會話時是否忽略事務處理標誌。
  575.  
    spring.jta.atomikos.connectionfactory.local-transaction-mode = false#是否須要本地事務。
  576.  
    spring.jta.atomikos.connectionfactory.maintenance-interval = 60#池的維護線程運行之間的時間,以秒爲單位。
  577.  
    spring.jta.atomikos.connectionfactory.max-idle-time = 60#從池中清除鏈接以後的時間,以秒爲單位。
  578.  
    spring.jta.atomikos.connectionfactory.max-lifetime = 0#以秒爲單位的鏈接能夠在被銷燬前聚集的時間。 0表示沒有限制。
  579.  
    spring.jta.atomikos.connectionfactory.max-pool-size = 1#池的最大尺寸。
  580.  
    spring.jta.atomikos.connectionfactory.min-pool-size = 1#池的最小大小。
  581.  
    spring.jta.atomikos.connectionfactory.reap-timeout = 0#借用鏈接的收穫超時(以秒爲單位)。 0表示沒有限制。
  582.  
    spring.jta.atomikos.connectionfactory.unique-resource-name = jmsConnectionFactory#在恢復期間用於標識資源的惟一名稱。
  583.  
    spring.jta.atomikos.datasource.borrow-connection-timeout = 30#用於從池中借用鏈接的超時,以秒爲單位。
  584.  
    spring.jta.atomikos.datasource. default-isolation-level =#池提供的鏈接的默認隔離級別。
  585.  
    spring.jta.atomikos.datasource.login-timeout =#創建數據庫鏈接的超時時間,以秒爲單位。
  586.  
    spring.jta.atomikos.datasource.maintenance-interval = 60#池維護線程運行之間的時間(以秒爲單位)。
  587.  
    spring.jta.atomikos.datasource.max-idle-time = 60#從池中清除鏈接以後的時間,以秒爲單位。
  588.  
    spring.jta.atomikos.datasource.max-lifetime = 0#以秒爲單位的鏈接能夠在被銷燬前聚集的時間。 0表示沒有限制。
  589.  
    spring.jta.atomikos.datasource.max-pool-size = 1#池的最大尺寸。
  590.  
    spring.jta.atomikos.datasource.min-pool-size = 1#池的最小大小。
  591.  
    spring.jta.atomikos.datasource.reap-timeout = 0#借用鏈接的收穫超時(以秒爲單位)。 0表示沒有限制。
  592.  
    spring.jta.atomikos.datasource.test-query =#返回以前用於驗證鏈接的SQL查詢或語句。
  593.  
    spring.jta.atomikos.datasource.unique-resource-name = dataSource#在恢復期間用於標識資源的惟一名稱。
  594.  
     
  595.  
    #BITRONIX
  596.  
    spring.jta.allow-multiple-lrc = false#容許多個LRC資源登記到同一個事務中。
  597.  
    spring.jta.asynchronous2-pc = false#啓用異步執行兩階段提交。
  598.  
    spring.jta.background-recovery-interval-seconds = 60#在後臺運行恢復進程的時間間隔(以秒爲單位)。
  599.  
    spring.jta.current-node-only-recovery = true#僅恢復當前節點。
  600.  
    spring.jta.debug-zero-resource-transaction = false#記錄建立和提交調用堆棧的事務執行沒有一個登記資源。
  601.  
    spring.jta. default-transaction-timeout = 60#以秒爲單位的默認事務超時。
  602.  
    spring.jta.disable-jmx = false#啓用JMX支持。
  603.  
    spring.jta.exception-analyzer =#設置要使用的異常分析器實現的徹底限定名稱。
  604.  
    spring.jta.filter-log-status = false#啓用對日誌的過濾,以便僅寫入強制日誌。
  605.  
    spring.jta.force-batching-enabled = true#設置是否對磁盤部隊進行批處理。
  606.  
    spring.jta.forced-write-enabled = true#設置日誌是否強制爲磁盤。
  607.  
    spring.jta.graceful-shutdown-interval = 60#TM在關閉時間終止事務以前等待事務完成的最大時間量。
  608.  
    spring.jta.jndi-transaction-synchronization-registry-name =#TransactionSynchronizationRegistry的JNDI名稱。
  609.  
    spring.jta.jndi-user-transaction-name =#UserTransaction的JNDI名稱。
  610.  
    spring.jta.journal = disk#期刊的名稱。能夠是 '磁盤''空'或類名。
  611.  
    spring.jta.log-part1-filename = btm1.tlog#日誌的第一個片斷的名稱。
  612.  
    spring.jta.log-part2-filename = btm2.tlog#日誌的第二個片斷的名稱。
  613.  
    spring.jta.max-log-size-in-mb = 2#日誌片斷的最大大小(以兆字節爲單位)。
  614.  
    spring.jta.resource-configuration-filename =#ResourceLoader配置文件名。
  615.  
    spring.jta.server-id =#必須惟一標識此TM實例的ASCII ID。默認爲機器的IP地址。
  616.  
    spring.jta.skip-corrupted-logs = false#跳過損壞的事務日誌條目。
  617.  
    spring.jta.warn-about-zero-resource-transaction = true#爲未執行單個登記資源的事務記錄警告。
  618.  
    spring.jta.bitronix.connectionfactory.acquire-increment = 1#增加池時建立的鏈接數。
  619.  
    spring.jta.bitronix.connectionfactory.acquisition-interval = 1#在獲取無效鏈接後嘗試從新獲取鏈接以前,須要等待的時間(以秒爲單位)。
  620.  
    spring.jta.bitronix.connectionfactory.acquisition-timeout = 30#以秒爲單位的超時時間,用於從池中獲取鏈接。
  621.  
    spring.jta.bitronix.connectionfactory.allow-local-transactions = true#事務管理器是否應容許混合XA和非XA事務。
  622.  
    spring.jta.bitronix.connectionfactory.apply-transaction-timeout = false#在登記時是否應在XAResource上設置事務超時。
  623.  
    spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled = true#資源是否應該自動登記和除名。
  624.  
    spring.jta.bitronix.connectionfactory.cache-producer-consumers = true#是否生產和消費者應該被緩存。
  625.  
    spring.jta.bitronix.connectionfactory.defer-connection-release = true#提供者是否能夠在同一鏈接上運行多個事務並支持事務交叉。
  626.  
    spring.jta.bitronix.connectionfactory.ignore-recovery-failures = false#是否應該忽略恢復失敗。
  627.  
    spring.jta.bitronix.connectionfactory.max-idle-time = 60#鏈接從池中清理以後的時間,以秒爲單位。
  628.  
    spring.jta.bitronix.connectionfactory.max-pool-size = 10#池的最大尺寸。 0表示沒有限制。
  629.  
    spring.jta.bitronix.connectionfactory.min-pool-size = 0#池的最小大小。
  630.  
    spring.jta.bitronix.connectionfactory.password =#用於鏈接到JMS提供程序的密碼。
  631.  
    spring.jta.bitronix.connectionfactory.share-transaction-connections = false#是否能夠在事務上下文中共享ACCESSIBLE狀態下的鏈接。
  632.  
    spring.jta.bitronix.connectionfactory.test-connections = true#是否應該從池中獲取鏈接時測試鏈接。
  633.  
    spring.jta.bitronix.connectionfactory.two-pc-ordering-position = 1#這個資源在兩階段提交期間應該採起的位置(老是首先是Integer.MIN_VALUE,老是最後是Integer.MAX_VALUE)。
  634.  
    spring.jta.bitronix.connectionfactory.unique-name = jmsConnectionFactory#在恢復期間用於標識資源的惟一名稱。
  635.  
    spring.jta.bitronix.connectionfactory.use-tm-join = true在啓動XAResources時是否應該使用TMJOIN。
  636.  
    spring.jta.bitronix.connectionfactory.user =#用於鏈接到JMS提供者的用戶。
  637.  
    spring.jta.bitronix.datasource.acquire-increment = 1#增加池時建立的鏈接數。
  638.  
    spring.jta.bitronix.datasource.acquisition-interval = 1#在獲取無效鏈接後,嘗試再次獲取鏈接以前的等待時間,以秒爲單位。
  639.  
    spring.jta.bitronix.datasource.acquisition-timeout = 30#以秒爲單位超時獲取池中的鏈接。
  640.  
    spring.jta.bitronix.datasource.allow-local-transactions = true#事務管理器是否應容許混合XA和非XA事務。
  641.  
    spring.jta.bitronix.datasource.apply-transaction-timeout = false#在註冊時是否應該在XAResource上設置事務超時。
  642.  
    spring.jta.bitronix.datasource.automatic-enlisting-enabled = true#資源是否應該自動登記和除名。
  643.  
    spring.jta.bitronix.datasource.cursor-holdability =#鏈接的默認光標可保存性。
  644.  
    spring.jta.bitronix.datasource.defer-connection-release = true#數據庫是否能夠在同一鏈接上運行多個事務並支持事務交叉。
  645.  
    spring.jta.bitronix.datasource.enable -jdbc4-connection-test =#是否在從池中獲取鏈接時調用Connection.isValid()。
  646.  
    spring.jta.bitronix.datasource.ignore-recovery-failures = false#是否應該忽略恢復失敗。
  647.  
    spring.jta.bitronix.datasource.isolation-level =#鏈接的默認隔離級別。
  648.  
    spring.jta.bitronix.datasource.local-auto-commit =#本地事務的默認自動提交模式。
  649.  
    spring.jta.bitronix.datasource.login-timeout =#創建數據庫鏈接的超時時間,以秒爲單位。
  650.  
    spring.jta.bitronix.datasource.max-idle-time = 60#從池中清除鏈接以後的時間,以秒爲單位。
  651.  
    spring.jta.bitronix.datasource.max-pool-size = 10#池的最大尺寸。 0表示沒有限制。
  652.  
    spring.jta.bitronix.datasource.min-pool-size = 0#池的最小尺寸。
  653.  
    spring.jta.bitronix.datasource.prepared-statement-cache-size = 0#準備好的語句緩存的目標大小。 0禁用緩存。
  654.  
    spring.jta.bitronix.datasource.share-transaction-connections = false#是否能夠在事務上下文中共享ACCESSIBLE狀態下的鏈接。
  655.  
    spring.jta.bitronix.datasource.test-query =#返回以前用於驗證鏈接的SQL查詢或語句。
  656.  
    spring.jta.bitronix.datasource.two-pc-ordering-position = 1#這個資源在兩階段提交期間應該採用的位置(老是首先是Integer.MIN_VALUE,老是最後是Integer.MAX_VALUE)。
  657.  
    spring.jta.bitronix.datasource.unique-name = dataSource#在恢復期間用於標識資源的惟一名稱。
  658.  
    spring.jta.bitronix.datasource.use-tm-join = true在啓動XAResources時是否應使用TMJOIN。
  659.  
     
  660.  
    #EMBEDDED MONGODB(EmbeddedMongoProperties)
  661.  
    spring.mongodb.embedded.features = SYNC_DELAY#要啓用的功能的逗號分隔列表。
  662.  
    spring.mongodb.embedded.version = 2.6.10#使用Mongo版本。
  663.  
     
  664.  
    #REDIS(RedisProperties)
  665.  
    spring.redis.database = 0#鏈接工廠使用的數據庫索引。
  666.  
    spring.redis.host = localhost#Redis服務器主機。
  667.  
    spring.redis.password =#登陸redis服務器的密碼。
  668.  
    spring.redis.pool.max-active = 8#池在給定時間能夠分配的最大鏈接數。使用負值無限制。
  669.  
    spring.redis.pool.max-idle = 8#池中「空閒」鏈接的最大數量。使用負值表示無限數量的空閒鏈接。
  670.  
    spring.redis.pool.max-wait = - 1#鏈接分配在池耗盡時拋出異常以前應阻塞的最長時間量(以毫秒爲單位)。使用負值能夠無限期地阻止。
  671.  
    spring.redis.pool.min-idle = 0#目標爲保持在池中的最小空閒鏈接數。若是該設置是確定的,則該設置僅起做用。
  672.  
    spring.redis.port = 6379#Redis服務器端口。
  673.  
    spring.redis.sentinel.master =#Redis服務器的名稱。
  674.  
    spring.redis.sentinel.nodes =#主機:端口對的逗號分隔列表。
  675.  
    spring.redis.timeout = 0#鏈接超時(以毫秒爲單位)。
  676.  
     
  677.  
     
  678.  
    #----------------------------------------
  679.  
    #整合特性
  680.  
    #----------------------------------------
  681.  
     
  682.  
    #ACTIVEMQ(ActiveMQProperties)
  683.  
    spring.activemq.broker-url =#ActiveMQ代理的URL。自動生成默認。例如`tcp: // localhost:61616`
  684.  
    spring.activemq.in-memory = true#指定默認代理URL是否應該在內存中。若是指定了明確的代理,則忽略。
  685.  
    spring.activemq.password =#登陸經紀人的密碼。
  686.  
    spring.activemq.pooled = false#指定是否應建立PooledConnectionFactory而不是常規的ConnectionFactory。
  687.  
    spring.activemq.user =#代理的登陸用戶。
  688.  
     
  689.  
    #ARTEMIS(ArtemisProperties)
  690.  
    spring.artemis.embedded.cluster-password =#集羣密碼。默認狀況下在啓動時隨機生成。
  691.  
    spring.artemis.embedded.data-directory =#日記文件目錄。若是關閉持久性,則不須要。
  692.  
    spring.artemis.embedded.enabled = true#若是Artemis服務器API可用,則啓用嵌入模式。
  693.  
    spring.artemis.embedded.persistent = false#啓用持久存儲。
  694.  
    spring.artemis.embedded.queues =#在啓動時建立的逗號分隔列表。
  695.  
    spring.artemis.embedded.server-id =#服務器ID。默認狀況下,使用自動遞增的計數器。
  696.  
    spring.artemis.embedded.topics =#啓動時要建立的主題的逗號分隔列表。
  697.  
    spring.artemis.host = localhost#阿蒂米斯經紀人主機。
  698.  
    spring.artemis.mode =#Artemis部署模式,默認爲自動檢測。能夠明確設置爲「本地」或「嵌入」。
  699.  
    spring.artemis.port = 61616#阿蒂米斯經紀人港口。
  700.  
     
  701.  
    #SPRING BATCH(BatchProperties)
  702.  
    spring.batch.initializer.enabled = true#若是須要,在啓動時建立所需的批處理表。
  703.  
    spring.batch.job.enabled = true#啓動時執行上下文中的全部Spring批處理做業。
  704.  
    spring.batch.job.names =#逗號分隔的啓動時要執行的做業名稱列表(例如`job1,job2`)。默認狀況下,執行在上下文中找到的全部做業。
  705.  
    spring.batch.schema = classpath:org / springframework / batch / core / schema - @@ platform @@。sql#用於初始化數據庫模式的SQL文件的路徑。
  706.  
    spring.batch.table-prefix =#全部批量元數據表的表前綴。
  707.  
     
  708.  
    #HORNETQ(HornetQProperties)
  709.  
    spring.hornetq.embedded.cluster-password =#集羣密碼。默認狀況下在啓動時隨機生成。
  710.  
    spring.hornetq.embedded.data-directory =#日記文件目錄。若是關閉持久性,則不須要。
  711.  
    spring.hornetq.embedded.enabled = true#若是HornetQ服務器API可用,則啓用嵌入模式。
  712.  
    spring.hornetq.embedded.persistent = false#啓用持久存儲。
  713.  
    spring.hornetq.embedded.queues =#在啓動時建立的逗號分隔列表。
  714.  
    spring.hornetq.embedded.server-id =#服務器ID。默認狀況下,使用自動遞增的計數器。
  715.  
    spring.hornetq.embedded.topics =#在啓動時建立的以逗號分隔的主題列表。
  716.  
    spring.hornetq.host = localhost#HornetQ代理主機。
  717.  
    spring.hornetq.mode =#HornetQ部署模式,默認爲自動檢測。能夠明確設置爲「本地」或「嵌入」。
  718.  
    spring.hornetq.port = 5445#HornetQ經紀人端口。
  719.  
     
  720.  
    #JMS(JmsProperties)
  721.  
    spring.jms.jndi-name =#鏈接工廠的JNDI名稱。設置時,優先於其餘鏈接工廠自動配置。
  722.  
    spring.jms.listener.acknowledge-mode =#容器的確認模式。默認狀況下,偵聽器經過自動確認進行事務處理。
  723.  
    spring.jms.listener.auto-startup = true#啓動時自動啓動容器。
  724.  
    spring.jms.listener.concurrency =#最小併發消費者數量。
  725.  
    spring.jms.listener.max-concurrency =#最大併發消費者數量。
  726.  
    spring.jms.pub-sub-domain = false#指定默認目標類型是否爲主題。
  727.  
     
  728.  
    #兔子(兔子屬性)
  729.  
    spring.rabbitmq.addresses =#客戶端應鏈接到的地址的逗號分隔列表。
  730.  
    spring.rabbitmq.dynamic = true#建立一個AmqpAdmin bean。
  731.  
    spring.rabbitmq.host = localhost#RabbitMQ主機。
  732.  
    spring.rabbitmq.listener.acknowledge-mode =#容器的確認模式。
  733.  
    spring.rabbitmq.listener.auto-startup = true#啓動時自動啓動容器。
  734.  
    spring.rabbitmq.listener.concurrency =#消費者的最小數量。
  735.  
    spring.rabbitmq.listener.max-concurrency =#消費者的最大數量。
  736.  
    spring.rabbitmq.listener.prefetch =#在單個請求中要處理的消息數。它應該大於或等於事務大小(若是使用)。
  737.  
    spring.rabbitmq.listener.transaction-size =#事務中要處理的消息數。爲了得到最佳結果,它應該小於或等於預取計數。
  738.  
    spring.rabbitmq.password =#登陸對經紀人進行身份驗證。
  739.  
    spring.rabbitmq.port = 5672#RabbitMQ端口。
  740.  
    spring.rabbitmq.requested-heartbeat =#請求的心跳超時,以秒爲單位; 零爲零。
  741.  
    spring.rabbitmq.ssl.enabled = false#啓用SSL支持。
  742.  
    spring.rabbitmq.ssl.key-store =#保存SSL證書的密鑰存儲區的路徑。
  743.  
    spring.rabbitmq.ssl.key-store-password =#用於訪問密鑰存儲區的密碼。
  744.  
    spring.rabbitmq.ssl.trust-store =#持有SSL證書的信任庫。
  745.  
    spring.rabbitmq.ssl.trust-store-password =#用於訪問信任存儲的密碼。
  746.  
    spring.rabbitmq.ssl.algorithm =#使用的SSL算法。默認狀況下由rabbit客戶端庫配置。
  747.  
    spring.rabbitmq.username =#登陸用戶向代理進行身份驗證。
  748.  
    spring.rabbitmq.virtual-host =#鏈接到代理時使用的虛擬主機。
  749.  
     
  750.  
     
  751.  
    #----------------------------------------
  752.  
    #執行器屬性
  753.  
    #----------------------------------------
  754.  
     
  755.  
    #ENDPOINTS(AbstractEndpoint子類)
  756.  
    endpoints.enabled = true#啓用端點。
  757.  
    endpoints.sensitive =#默認的端點敏感設置。
  758.  
    endpoints.actuator.enabled = true#啓用端點。
  759.  
    endpoints.actuator.path =#端點URL路徑。
  760.  
    endpoints.actuator.sensitive = false#啓用端點的安全性。
  761.  
    endpoints.autoconfig.enabled =#啓用端點。
  762.  
    endpoints.autoconfig.id =#端點標識符。
  763.  
    endpoints.autoconfig.sensitive =#標記端點是否暴露敏感信息。
  764.  
    endpoints.beans.enabled =#啓用端點。
  765.  
    endpoints.beans.id =#端點標識符。
  766.  
    endpoints.beans.sensitive =#標記端點是否暴露敏感信息。
  767.  
    endpoints.configprops.enabled =#啓用端點。
  768.  
    endpoints.configprops.id =#端點標識符。
  769.  
    endpoints.configprops.keys-to-sanitize =密碼,密鑰,密鑰,。*憑證。*,vcap_services#應該清理的密鑰。鍵能夠是屬性以或正則表達式結束的簡單字符串。
  770.  
    endpoints.configprops.sensitive =#標記端點是否公開敏感信息。
  771.  
    endpoints.docs.curies.enabled = false#啓用居里代。
  772.  
    endpoints.docs.enabled = true#啓用執行器文檔終結點。
  773.  
    endpoints.docs.path = / docs#
  774.  
    endpoints.docs.sensitive = false
  775.  
    endpoints.dump.enabled =#啓用端點。
  776.  
    endpoints.dump.id =#端點標識符。
  777.  
    endpoints.dump.sensitive =#標記端點是否暴露敏感信息。
  778.  
    endpoints.env.enabled =#啓用端點。
  779.  
    endpoints.env.id =#端點標識符。
  780.  
    endpoints.env.keys-to-sanitize =密碼,密鑰,密鑰,。*憑證。*,vcap_services#應該清理的密鑰。鍵能夠是屬性以或正則表達式結束的簡單字符串。
  781.  
    endpoints.env.sensitive =#標記端點是否暴露敏感信息。
  782.  
    endpoints.flyway.enabled =#啓用端點。
  783.  
    endpoints.flyway.id =#端點標識符。
  784.  
    endpoints.flyway.sensitive =#標記端點是否暴露敏感信息。
  785.  
    endpoints.health.enabled =#啓用端點。
  786.  
    endpoints.health.id =#端點標識符。
  787.  
    endpoints.health.mapping。* =#健康狀態到HttpStatus代碼的映射。默認狀況下,註冊的健康狀態映射到合理的默認值(即UP地圖爲 200)。
  788.  
    endpoints.health.sensitive =#標記端點是否暴露敏感信息。
  789.  
    endpoints.health.time-to-live = 1000#緩存結果的生存時間(以毫秒爲單位)。
  790.  
    endpoints.info.enabled =#啓用端點。
  791.  
    endpoints.info.id =#端點標識符。
  792.  
    endpoints.info.sensitive =#標記端點是否暴露敏感信息。
  793.  
    endpoints.jolokia.enabled = true#啓用Jolokia端點。
  794.  
    endpoints.jolokia.path = / jolokia#端點URL路徑。
  795.  
    endpoints.jolokia.sensitive = true#啓用端點的安全性。
  796.  
    endpoints.liquibase.enabled =#啓用端點。
  797.  
    endpoints.liquibase.id =#端點標識符。
  798.  
    endpoints.liquibase.sensitive =#標記端點是否暴露敏感信息。
  799.  
    endpoints.logfile.enabled = true#啓用端點。
  800.  
    endpoints.logfile.path = / logfile#端點URL路徑。
  801.  
    endpoints.logfile.sensitive = true#在端點上啓用安全性。
  802.  
    endpoints.mappings.enabled =#啓用端點。
  803.  
    endpoints.mappings.id =#端點標識符。
  804.  
    endpoints.mappings.sensitive =#標記端點是否暴露敏感信息。
  805.  
    endpoints.metrics.enabled =#啓用端點。
  806.  
    endpoints.metrics.filter.enabled = true#啓用度量servlet過濾器。
  807.  
    endpoints.metrics.id =#端點標識符。
  808.  
    endpoints.metrics.sensitive =#標記端點是否暴露敏感信息。
  809.  
    endpoints.shutdown.enabled =#啓用端點。
  810.  
    endpoints.shutdown.id =#端點標識符。
  811.  
    endpoints.shutdown.sensitive =#標記端點是否暴露敏感信息。
  812.  
    endpoints.trace.enabled =#啓用端點。
  813.  
    endpoints.trace.id =#端點標識符。
  814.  
    endpoints.trace.sensitive =#標記端點是否暴露敏感信息。
  815.  
     
  816.  
    #ENDPOINTS CORS配置(EndpointCorsProperties)
  817.  
    endpoints.cors.allow-credentials =#設置是否支持憑證。未設置時,不支持憑證。
  818.  
    endpoints.cors.allowed-headers =#在請求中容許使用逗號分隔的標題列表。 '*'容許全部標題。
  819.  
    endpoints.cors.allowed-methods = GET#逗號分隔的容許的方法列表。 '*'容許全部方法。
  820.  
    endpoints.cors.allowed-origins =#逗號分隔的起源列表容許。 '*'容許全部的來源。未設置時,CORS支持被禁用。
  821.  
    endpoints.cors.exposed-headers =#逗號分隔的標題列表包含在響應中。
  822.  
    endpoints.cors.max-age = 1800#以秒爲單位,客戶端能夠緩存飛行前請求的響應。
  823.  
     
  824.  
    #JMX ENDPOINT(EndpointMBeanExportProperties)
  825.  
    endpoints.jmx.domain =#JMX域名。若是設置,則使用 'spring.jmx.default-domain'的值進行初始化。
  826.  
    endpoints.jmx.enabled = true#啓用全部端點的JMX導出。
  827.  
    endpoints.jmx. static-names =#附加到全部表示端點的MBean的ObjectName的靜態屬性。
  828.  
    endpoints.jmx.unique-names = false#確保ObjectNames在發生衝突時被修改。
  829.  
     
  830.  
    #JOLOKIA(JolokiaProperties)
  831.  
    jolokia.config。* =#請參閱Jolokia手冊
  832.  
     
  833.  
    #管理HTTP服務器(ManagementServerProperties)
  834.  
    management.add-application-context-header = true#在每一個響應中添加「X-Application-Context」HTTP標頭。
  835.  
    management.address =#管理端點應該綁定的網絡地址。
  836.  
    management.context-path =#管理端點上下文路徑。例如`/執行器 '
  837.  
    management.port =#管理端點HTTP端口。默認使用與應用程序相同的端口。
  838.  
    management.security.enabled = true#啓用安全性。
  839.  
    management.security.role = ADMIN#訪問管理端點所需的角色。
  840.  
    management.security.sessions =無狀態#會話建立策略使用(永遠,從不,if_required,無狀態)。
  841.  
     
  842.  
    #健康指標(之前爲健康*)
  843.  
    management.health.db.enabled = true#啓用數據庫運行情況檢查。
  844.  
    management.health.defaults.enabled = true#啓用默認運行情況指示器。
  845.  
    management.health.diskspace.enabled = true#啓用磁盤空間運行情況檢查。
  846.  
    management.health.diskspace.path =#用於計算可用磁盤空間的路徑。
  847.  
    management.health.diskspace.threshold = 0#應該可用的最小磁盤空間,以字節爲單位。
  848.  
    management.health.elasticsearch.enabled = true#啓用elasticsearch運行情況檢查。
  849.  
    management.health.elasticsearch.indices =#逗號分隔的索引名稱。
  850.  
    management.health.elasticsearch.response-timeout = 100#等待羣集響應的時間(以毫秒爲單位)。
  851.  
    management.health.jms.enabled = true#啓用JMS運行情況檢查。
  852.  
    management.health.mail.enabled = true#啓用郵件運行情況檢查。
  853.  
    management.health.mongo.enabled = true#啓用MongoDB運行情況檢查。
  854.  
    management.health.rabbit.enabled = true#啓用RabbitMQ運行情況檢查。
  855.  
    management.health.redis.enabled = true#啓用Redis運行情況檢查。
  856.  
    management.health.solr.enabled = true#啓用Solr運行情況檢查。
  857.  
    management.health.status.order = DOWN,OUT_OF_SERVICE,UNKNOWN,UP#以嚴重性順序的逗號分隔的健康狀態列表。
  858.  
     
  859.  
    #TRACING((TraceProperties)
  860.  
    management.trace.include =請求標題,響應標題,錯誤#要包含在跟蹤中的項目。
  861.  
     
  862.  
    #遠程外殼
  863.  
    shell.auth = simple#認證類型。根據環境自動檢測。
  864.  
    shell.auth.jaas.domain =個人域#JAAS域。
  865.  
    shell.auth.key.path =#認證密鑰的路徑。這應該指向一個有效的「.pem」文件。
  866.  
    shell.auth.simple.user.name = user#登陸用戶。
  867.  
    shell.auth.simple.user.password =#登陸密碼。
  868.  
    shell.auth.spring.roles = ADMIN#用於登陸到CRaSH控制檯的所需角色的逗號分隔列表。
  869.  
    shell.command-path-patterns = classpath *:/ commands / **,classpath *:/ crash / commands / **#用於查找命令的模式。
  870.  
    shell.command-refresh-interval = -1#若是須要(以秒爲單位),掃描更改並更新命令。
  871.  
    shell.config-path-patterns = classpath *:/ crash / *#用於查找配置的模式。
  872.  
    shell.disabled-commands = jpa *,jdbc *,jndi *#禁用命令的逗號分隔列表。
  873.  
    shell.disabled-plugins =#禁用逗號分隔的插件列表。根據環境,某些插件默認處於禁用狀態。
  874.  
    shell.ssh.auth-timeout =#用戶將被提示再次登陸後的毫秒數。
  875.  
    shell.ssh.enabled = true#啓用CRaSH SSH支持。
  876.  
    shell.ssh.idle-timeout =#關閉未使用的鏈接以後的毫秒數。
  877.  
    shell.ssh.key-path =#SSH服務器密鑰的路徑。
  878.  
    shell.ssh.port = 2000#SSH端口。
  879.  
    shell.telnet.enabled = false#啓用CRaSH telnet支持。若是TelnetPlugin可用,則默認啓用。
  880.  
    shell.telnet.port = 5000#Telnet端口。
  881.  
     
  882.  
    #GIT信息
  883.  
    spring.git.properties =#生成的git信息屬性文件的資源引用。
  884.  
     
  885.  
    #METRICS EXPORT(MetricExportProperties)
  886.  
    spring.metrics.export.aggregate.key-pattern =#告訴聚合器如何處理源存儲庫中的密鑰的模式。
  887.  
    spring.metrics.export.aggregate.prefix =#全局存儲庫的前綴(若是處於活動狀態)。
  888.  
    spring.metrics.export.delay-millis = 5000#導出刻度之間的延遲(以毫秒爲單位)。按照計劃將度量標準導出到外部源,而且延遲。
  889.  
    spring.metrics.export.enabled = true#啓用度量標準導出的標誌(假設MetricWriter可用)。
  890.  
    spring.metrics.export.excludes =#要排除的度量標準名稱的模式列表。包含後應用。
  891.  
    spring.metrics.export.includes =#要包含的度量標準名稱的模式列表。
  892.  
    spring.metrics.export.redis.key = keys.spring.metrics#Redis存儲庫導出密鑰(若是處於活動狀態)。
  893.  
    spring.metrics.export.redis.prefix = spring.metrics#若是處於活動狀態,則Redis存儲庫的前綴。
  894.  
    spring.metrics.export.send-latest =#根據不導出未更改的度量標準值,標記關閉任何可用的優化。
  895.  
    spring.metrics.export.statsd.host =#接收導出指標的statsd服務器的主機。
  896.  
    spring.metrics.export.statsd.port = 8125#接收導出指標的statsd服務器的端口。
  897.  
    spring.metrics.export.statsd.prefix =#statsd導出指標的前綴。
  898.  
    spring.metrics.export.triggers。* =#每一個MetricWriter bean名稱的特定觸發器屬性。
  899.  
     
  900.  
     
  901.  
    #----------------------------------------
  902.  
    #DEVTOOLS屬性
  903.  
    #----------------------------------------
  904.  
     
  905.  
    #DEVTOOLS(DevToolsProperties)
  906.  
    spring.devtools.livereload.enabled = true#啓用livereload.com兼容服務器。
  907.  
    spring.devtools.livereload.port = 35729#服務器端口。
  908.  
    spring.devtools.restart.additional-exclude =#應該從觸發徹底從新啓動時排除的其餘模式。
  909.  
    spring.devtools.restart.additional-paths =#觀察更改的其餘路徑。
  910.  
    spring.devtools.restart.enabled = true#啓用自動重啓。
  911.  
    spring.devtools.restart.exclude = META-INF /行家/ **,META-INF /資源/ **,資源/ **,靜態/ **,公共/ **,模板/ **,** / * Test.class,** / * Tests.class,git.properties#應該排除觸發徹底從新啓動的模式。
  912.  
    spring.devtools.restart.poll-interval = 1000#輪詢類路徑更改之間等待的時間(以毫秒爲單位)。
  913.  
    spring.devtools.restart.quiet-period = 400#觸發從新啓動以前,沒有任何類路徑更改所需的安靜時間(以毫秒爲單位)。
  914.  
    spring.devtools.restart.trigger-file =#特定文件的名稱,在更改時會觸發從新啓動檢查。若是未指定,則任何類路徑文件更改都將觸發從新啓動。
  915.  
     
  916.  
    #REMOTE DEVTOOLS(RemoteDevToolsProperties)
  917.  
    spring.devtools.remote.context-path = /。~~ spring-boot!〜#用於處理遠程鏈接的上下文路徑。
  918.  
    spring.devtools.remote.debug.enabled = true#啓用遠程調試支持。
  919.  
    spring.devtools.remote.debug.local-port = 8000#本地遠程調試服務器端口。
  920.  
    spring.devtools.remote.proxy.host =#用於鏈接遠程應用程序的代理主機。
  921.  
    spring.devtools.remote.proxy.port =#用於鏈接遠程應用程序的代理端口。
  922.  
    spring.devtools.remote.restart.enabled = true#啓用遠程重啓。
  923.  
    spring.devtools.remote.secret =#創建鏈接所需的共享密鑰(啓用遠程支持所必需的)。
  924.  
    spring.devtools.remote.secret-header-name = X-AUTH-TOKEN#用於傳輸共享密鑰的HTTP頭。
相關文章
相關標籤/搜索