56 lines
1.4 KiB
YAML
Executable File
56 lines
1.4 KiB
YAML
Executable File
server:
|
|
port: ${SERVER_PORT:8080}
|
|
|
|
file:
|
|
upload-dir: ${FILE_UPLOAD_DIR:/upload}
|
|
|
|
spring:
|
|
http:
|
|
encoding:
|
|
charset: UTF-8
|
|
enabled: true
|
|
force: true
|
|
|
|
application:
|
|
name: ${SPRING_APPLICATION_NAME:@project.description@}
|
|
version: ${SPRING_APPLICATION_VERSION:@project.version@}
|
|
|
|
profiles:
|
|
active: ${SPRING_PROFILES_ACTIVE:@spring.profiles.active@}
|
|
|
|
banner:
|
|
location: 'classpath:banner.txt'
|
|
|
|
# jackson:
|
|
# date-format: yyyy-MM-dd HH:mm:ss
|
|
# time-zone: Europe/Paris
|
|
|
|
# messages:
|
|
# basename: language/i18n
|
|
|
|
servlet:
|
|
multipart:
|
|
enabled: ${SPRING_SERVLET_MULTIPART_ENABLED:true}
|
|
max-file-size: ${SPRING_SERVLET_MULTIPART_MAX_FILE_SIZE:50MB}
|
|
max-request-size: ${SPRING_SERVLET_MULTIPART_MAX_REQUEST_SIZE:50MB}
|
|
#location: ${java.io.tmpdir}
|
|
|
|
logging:
|
|
level:
|
|
root: ${LOGGING_LEVEL_ROOT:INFO}
|
|
org:
|
|
org.hibernate.orm.query.sqm.ast.logTree: ${LOGGING_LEVEL_HIBERNATE_SQL:OFF}
|
|
springframework:
|
|
boot:
|
|
autoconfigure: ${LOGGING_LEVEL_SPRINGFRAMEWORK_BOOT_AUTOCONFIGURE:OFF}
|
|
web:
|
|
filter:
|
|
CommonsRequestLoggingFilter: ${LOGGING_LEVEL_COMMONS_REQUEST_LOGGING_FILTER:INFO}
|
|
security:
|
|
config:
|
|
annotation:
|
|
authentication:
|
|
configuration:
|
|
InitializeUserDetailsBeanManagerConfigurer: ERROR
|
|
|
|
apiPrefix: "" |