123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- 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
- 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
- jwt:
- tokenHeader: Authorization
- secret: forest-admin-secret
- expiration: 604800
- tokenHead: Bearer
- secure:
- ignored:
- urls:
- - /swagger-ui.html
- - /swagger-resources/**
- - /swagger/**
- - /**/v2/api-docs
- - /**/*.js
- - /**/*.css
- - /**/*.png
- - /**/*.ico
- - /webjars/springfox-swagger-ui/**
- - /druid/**
- - /actuator/**
- - /sso/**
- - /wechat/**
- - /home/**
- - /product/**
- - /brand/**
- 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
- 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/zddapi/forest-portal/wechat/h5/userInfo
- before: http://172.16.90.25:8080
|