| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- spring:
- crss-main:
- datasource:
- jdbcUrl: jdbc:oracle:thin:@192.168.235.6:1521:ORCL
- username: crss_meterprocess_main
- password: crss
- driverClassName: oracle.jdbc.driver.OracleDriver
- connectionTimeout: 10000
- maxPoolSize: 20
- crss-registration:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_reg
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- connectionTimeout: 10000
- maxPoolSize: 20
- jpa:
- show-sql: false
- generate-ddl: true
- properties:
- hibernate:
- dialect: org.hibernate.dialect.Oracle10gDialect
- ddl-auto: update
- 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: 8081
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- #security:
- # oauth2:
- # client:
- # accessTokenUri: http://localhost:8082/oauth/access_token
- # userAuthorizationUri: http://localhost:8082/oauth/authorize
- # clientId: crss
- # clientSecret: crsssecret
- # authorized-grant-types: authorization_code,refresh_token,password
- # scope: openid
- # access-token-validity-seconds: 3600
- # resource:
- # userInfoUri: http://localhost:8082/user
- logging:
- level:
- com.pemc: DEBUG
- com.netflix: DEBUG
- org.springframework.cloud: DEBUG
|