| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- spring:
- datasource:
- platform : oracle
- url: jdbc:oracle:thin:@//192.168.241.62:1521/ORCL
- username: crss_reg
- password: crss_reg
- driverClassName: oracle.jdbc.OracleDriver
- jpa:
- database: ORACLE
- show-sql: true
- 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.smtp.starttlls.enable: true
- mail.smtp.starttls.required: true
- #we dont need spring mvc here
- freemarker:
- enabled: false
- template-loader-path: classpath:/mail/templates
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- storage:
- file:
- rootFolder: registration-dir
- security:
- oauth2:
- client:
- clientId: crss
- clientSecret: crsssecret
- authorized-grant-types: authorization_code,refresh_token,password
- scope: openid
- access-token-validity-seconds: 3600
- server:
- undertow:
- accesslog:
- dir: target/logs
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
|