crss-reg.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. spring:
  2. profiles.include: audit, client-sec
  3. jpa:
  4. properties:
  5. hibernate:
  6. integration.envers.enabled: true
  7. http:
  8. multipart:
  9. maxFileSize: "25Mb"
  10. maxRequestSize: "25Mb"
  11. resources:
  12. chain:
  13. gzipped: true
  14. crss:
  15. docmgt:
  16. root-dir: /crss/docmgt
  17. xdf:
  18. client-type: local # OPTIONS:[local, ftp, sftp]
  19. root-folder: /crss/xdf
  20. auto-create-dir: true
  21. file-encoding: UTF-8
  22. file-exists-mode: fail # OPTIONS:[append, append_no_flush, fail, ignore, replace]
  23. remote:
  24. host: localhost
  25. port: 22
  26. username: crss
  27. password: crss
  28. feign:
  29. hystrix:
  30. enabled: false
  31. server:
  32. # TODO: investigate this part and move to global config
  33. jackson:
  34. # for further customization please consult the documentation:
  35. # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
  36. # https://github.com/FasterXML/jackson-databind/wiki
  37. # deserialization:
  38. # FAIL_ON_UNKNOWN_PROPERTIES: true
  39. # DEFAULT_VIEW_INCLUSION: true
  40. serialization:
  41. write_dates_as_timestamps: false