| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- spring:
- profiles.include: client-sec
- crss-main:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=meterprocess&ApplicationName=meterprocessApp
- username: crss_meterprocess
- password: D9JpfUtT
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=registration&ApplicationName=meterprocessApp
- username: crss_registration
- password: 51UF3JA9
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- test-on-borrow: true
- validation-query: SELECT 1
- crss-nmms:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=nmms&ApplicationName=meterprocessApp
- username: crss_nmms
- password: lbgg1i2Y
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- generate_statistics: false
- dialect: org.hibernate.dialect.PostgreSQLDialect
- ddl-auto: none
- hbm2ddl:
- import_files:
- # prevent batch job from running on app start
- batch:
- job:
- enabled: false
- initializer:
- enabled: false
- cloud:
- task:
- initialize:
- enable: false
- security:
- oauth2:
- client:
- accessTokenUri: http://crssadmin-service.marathon.l4lb.thisdcos.directory:8080/oauth/access_token
- userAuthorizationUri: http://crssadmin-service.marathon.l4lb.thisdcos.directory:8080/oauth/authorize
- resource:
- userInfoUri: http://crssadmin-service.marathon.l4lb.thisdcos.directory:8080/user
- #liquibase:
- # change-log: classpath:/db/db.changelog-master.xml
- server:
- port: 8081
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- session:
- cookie:
- secure: true
- logging:
- level:
- com.pemc: DEBUG
- com.netflix: DEBUG
- org.springframework.cloud: DEBUG
- org.apache.http: DEBUG
- # org.hibernate.stat: DEBUG
- # com.pemc.crss: DEBUG
- # org.hibernate: INFO
- # org.hibernate.type: TRACE
- dataflow:
- url: http://spring-cloud-data-flow.marathon.l4lb.thisdcos.directory:9393
- job:
- maxRun: 1
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
- workingDirectory: /upload
- privateKey:
|