| 12345678910111213141516171819202122232425262728293031 |
- spring:
- datasource:
- platform: postgres
- url: jdbc:postgresql://postgresql.marathon.l4lb.thisdcos.directory:5432/crss_registration
- username: crss_reg
- password: crss_reg
- driverClassName: org.postgresql.Driver
- jpa:
- database: POSTGRESQL
- show-sql: false
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQL94Dialect
- #we dont need spring mvc here
- freemarker:
- enabled: false
- template-loader-path: classpath:/mail/templates
- 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
|