| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- spring:
- profiles:
- include: client-sec
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_reg
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-nmms:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_nmms
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- generate_statistics: true
- dialect: org.hibernate.dialect.PostgreSQLDialect
- ddl-auto: none
- hbm2ddl:
- import_files:
- # prevent batch job from running on app start
- batch:
- job:
- enabled: false
- #liquibase:
- # change-log: classpath:/db/db.changelog-master.xml
- server:
- port: 9091
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- eureka:
- instance:
- prefer-ip-address: true
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- # healthcheck:
- # enabled: true
- # lease:
- # duration: 5
- # instance:
- # leaseRenewalIntervalInSeconds: 1
- # leaseExpirationDurationInSeconds: 2
- logging:
- level:
- com.pemc: DEBUG
- com.netflix: DEBUG
- org.springframework.cloud: DEBUG
- org.apache.http: DEBUG
- org.hibernate.stat: debug
- dataflow:
- url: http://localhost:9393
- job:
- maxRun: 1
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: pemc-storage.southeastasia.cloudapp.azure.com
- port: 22
- workingDirectory: /home/pemc/upload
- privateKey:
|