| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- spring:
- datasource:
- platform: oracle
- url: jdbc:oracle:thin:@192.168.235.6:1521:ORCL
- username: crss_reg
- password: crss_reg
- driverClassName: oracle.jdbc.OracleDriver
- hikari:
- connectionTimeout: 10000
- maximumPoolSize: 20
- jpa:
- show-sql: false
- rabbitmq:
- username: guest
- password: guest
- host: localhost
- ports:
- - "5672:5672"
- - "15672:15672"
- mail:
- host: smtp.gmail.com
- port: 587
- username: demo.exist.pemc@gmail.com
- # please provide the password
- password: $pockTest
- properties:
- mail.smtp.auth: true
- mail.debug: true
- mail.smtp.starttlls.enable: true
- mail.smtp.starttls.required: true
- #we dont need spring mvc here
- freemarker:
- enabled: false
- template-loader-path: classpath:/mail/templates
- server:
- port: 8081
- security:
- oauth2:
- client:
- accessTokenUri: http://localhost:8082/oauth/access_token
- userAuthorizationUri: http://localhost:8082/oauth/authorize
- resource:
- userInfoUri: http://localhost:8082/user
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- graylog:
- host: localhost
|