12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- spring:
- datasource:
- url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
- username: root
- password: 123456
- druid:
- initial-size: 5
- min-idle: 10
- max-active: 20
- web-stat-filter:
- exclusions: "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*"
- stat-view-servlet:
- login-username: druid
- login-password: druid
- boot:
- admin:
- client:
- url: http://localhost:9091
- data:
- mongodb:
- host: 172.16.90.253
- port: 27017
- database: mall-port
- redis:
- host: 172.16.90.253
- database: 0
- port: 6379
- password: 123456
- timeout: 300ms
- rabbitmq:
- host: 172.16.90.64
- port: 5672
- virtual-host: /forest
- username: forest
- password: 123456
- publisher-confirms: true
- myredis:
- address: redis://${spring.redis.host}:${spring.redis.port}
- password: ${spring.redis.password}
-
- logging:
- level:
- org.springframework.data.mongodb.core: debug
- com.hwrj.cloud.portal.mapper: debug
- com.hwrj.cloud.portal.dao: debug
- mybatis:
- mapper-locations:
- - classpath:dao/*.xml
- - classpath*:com/**/mapper/*.xml
- rabbitmq:
- queue:
- name:
- cancelOrder: cancelOrderQueue
- redis:
- database: forest
- key:
- authCode: 'ums:authCode'
- telLoginCode: 'ums:authCode'
- orderId: 'oms:orderId'
- member: 'ums:member'
- token: 'ums:token'
- expire:
- authCode: 90
- authLoginCode: 240
- common: 86400
- jwt:
- tokenHeader: Authorization
- secret: forest-admin-secret
- expiration: 604800
- tokenHead: Bearer
-
- forest:
- wx:
- password: forest123456
- sms:
- accessKeyId: LTAICB9TH0OAN3yJ
- accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60
- signName: hywa
-
- wx:
- mp:
- aesKey: 123
- appId: wxbe90cc7c5233dd84
- secret: ec4a18ce1a7bcf17cf592c3d57cec68a
- token: 123
- url: http://wx.hw.hongweisoft.com/fqb/forest-portal/wechat/h5/userInfo
- before: http://172.16.90.25:8080
- pay:
- appId: wxbe90cc7c5233dd84
- mchId: 1583849731
- mchKey: B5F5A628C91D869F4CA357D2BCD63006
- wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/fqb/forest-portal/app/payResult
|