| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- spring:
- profiles.include: audit
- jpa:
- database: ORACLE
- show-sql: false
- properties:
- jadira.usertype.autoRegisterUserTypes: true
- hibernate:
- dialect: org.hibernate.dialect.Oracle10gDialect
- integration.envers.enabled: true
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- resources:
- chain:
- gzipped: true
- app:
- docmgt:
- root-folder: /crss/docmgt
- xdf:
- client-type: local # OPTIONS:[local, ftp, sftp]
- root-folder: /crss/xdf
- auto-create-dir: true
- file-encoding: UTF-8
- file-exists-mode: fail # OPTIONS:[append, append_no_flush, fail, ignore, replace]
- remote:
- host: localhost
- port: 22
- username: crss
- password: crss
- feign:
- hystrix:
- enabled: false
- server:
- # TODO: investigate this part and move to global config
- jackson:
- # for further customization please consult the documentation:
- # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
- # https://github.com/FasterXML/jackson-databind/wiki
- # deserialization:
- # FAIL_ON_UNKNOWN_PROPERTIES: true
- # DEFAULT_VIEW_INCLUSION: true
- serialization:
- write_dates_as_timestamps: false
|