| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- spring:
- profiles.include: pg-query
- datasource:
- url: jdbc:postgresql://localhost:5432/crss_metering
- username: crss_metering
- password: crss_metering
- driverClassName: org.postgresql.Driver
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 20
- jpa:
- database: POSTGRESQL
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQL94Dialect
- server:
- port: 8084
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- 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: WARN
- org.springframework.cloud: WARN
- org.hibernate.SQL: DEBUG
|