| 123456789101112131415161718192021222324252627282930313233343536373839 |
- spring:
- datasource:
- url: jdbc:postgresql://localhost:5432/crss_sched
- username: crss_sched
- password: crss_sched
- driverClassName: org.postgresql.Driver
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 20
- jpa:
- database: POSTGRESQL
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQL94Dialect
- rabbitmq:
- username: guest
- password: guest
- host: localhost
- ports:
- - "5672:5672"
- - "15672:15672"
- 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
|