| 1234567891011121314151617181920212223242526272829303132333435 |
- spring:
- datasource:
- platform: oracle
- url: jdbc:oracle:thin:@192.168.235.6:1521:ORCL
- username: crss_reg_uat
- password: crss_reg_uat
- driverClassName: oracle.jdbc.OracleDriver
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 20
- jpa:
- database: ORACLE
- show-sql: true
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- mail:
- host: smtp.gmail.com
- port: 587
- # TODO: replace this values
- username: demo.exist.pemc@gmail.com
- password: $pockTest
- properties:
- mail.smtp.auth: true
- mail.debug: true
- mail.smtp.starttlls.enable: true
- mail.smtp.starttls.required: true
- #we dont need spring mvc here
- freemarker:
- enabled: false
- template-loader-path: classpath:/mail/templates
- graylog:
- host: pemc.integration.exist.com
|