# SPRING CONFIG (ConfigFileApplicationListener)
fig.name= # config file name (default to 'application')
fig.location= # location of config file
# PROFILES
spring.profiles.active= # comma list of active profiles
spring.profiles.include= # unconditionally activate the specified comma separated profiles
# APPLICATION SETTINGS (SpringApplication)
spring.main.sources=
spring.main.web-environment= # detect by default
spring.main.show-banner=true
= # see class for all properties
# LOGGING
logging.path=/var/logs
logging.file=myapp.log
fig= # location of config file (default l for logback)
logging.level.*= # levels for loggers, e.g. "springframework=DEBUG" (TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF)
# IDENTITY (ContextIdApplicationContextInitializer)
thyme
spring.application.name=
spring.application.index=
# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server.port=8080
server.address= # bind to a specific NIC
server.session-timeout= # session timeout in seconds
t-parameters.*= # Servlet context init parameters, e.g. t-parameters.a=alpha
t-path= # the context path, defaults to '/'
server.servlet-path= # the servlet path, defaults to '/'
abled=true # if SSL support is enabled
server.ssl.client-auth= # want or need
server.ssl.key-alias=
server.ssl.ciphers= # supported SSL ciphers
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=TLS
ust-store=
ust-store-password=
ust-store-provider=
ust-store-type=
at.access-log-pattern= # log pattern of the access log
at.access-log-enabled=false # is access logging enabled
at.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} # regular expression matching trusted IP addresses
at.protocol-header=x-forwarded-proto # front end proxy forward header
at.port-header= # front end proxy port header
-ip-header=x-forwarded-for
at.basedir=/tmp # base dir (usually not needed, defaults to tmp)
at.background-processor-delay=30; # in seconds
at.max-http-header-size= # maximum size in bytes of the HTTP message header
at.max-threads = 0 # number of threads in protocol handler
at.uri-encoding = UTF-8 # character encoding to use for URL decoding
# SPRING MVC (WebMvcProperties)
spring.mvc.locale= # set fixed locale, e.g. en_UK
spring.mvc.date-format= # set fixed date format, e.g. dd/MM/yyyy
ssage-codes-resolver-format= # PREFIX_ERROR_CODE / POSTFIX_ERROR_CODE
spring.mvc.ignore-default-model-on-redirect=true # If the the content of the "default" model should be ignored redirects
spring.view.prefix= # MVC view prefix
spring.view.suffix= # ... and suffix
sources.cache-period= # cache timeouts in headers sent to browser
sources.add-mappings=true # if default mappings should be added
# SPRING HATEOS (HateoasProperties)
spring.hateoas.apply-to-primary-object-mapper=true # if the primary mapper should also be configured
# HTTP encoding (HttpEncodingProperties)
ding.charset=UTF-8 # the encoding of HTTP requests/responses
abled=true # enable http encoding support
ding.force=true # force the configured encoding
# JACKSON (JacksonProperties)
spring.jackson.date-format= # Date format string (e.g. yyyy-MM-dd HH:mm:ss), or a fully-
qualified date format class name (e.g. com.fasterxml.jackson.databind.util.ISO8601DateFormat)
spring.jackson.property-naming-strategy= # One of the constants on Jackson's PropertyNamingStrategy (e.g. CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES) or the fully-qualified class name of a PropertyNamingStrategy subclass
spring.jackson.deserialization.*= # see Jackson's DeserializationFeature
ator.*= # see Jackson's JsonGenerator.Feature