123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- spring:
- http:
- multipart:
- maxFileSize: 30Mb
- maxRequestSize: 30Mb
- mvc:
- static-path-pattern: /**
- resources:
- static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,file:${img.location}
- datasource:
- url: jdbc:mysql://172.16.90.253:3306/cq-carbon-platform-dev?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}
- passord: ${spring.redis.password}
-
- logging:
- level:
- org.springframework.data.mongodb.core: debug
- com.hwrj.cloud.portal.mapper: debug
- com.hwrj.cloud.portal.dao: debug
- com.hcloud: debug
- mybatis:
- # 搜索指定包别名
- typeAliasesPackage: com.hcloud.microserver.h5.entity,com.hcloud.microserver.h5.facade.carbon
- mapper-locations:
- - classpath:*/*.xml
- - classpath:carbon/*.xml
- - classpath*:com/**/mapper/*.xml
- rabbitmq:
- queue:
- name:
- cancelOrder: cancelOrderQueue
- redis:
- database: carbon
- key:
- authCode: 'sys:authCode'
- telLoginCode: 'sys:authCode'
- orderId: 'sys:orderId'
- member: 'sys:member'
- token: 'sys:token'
- expire:
- authCode: 90
- authLoginCode: 240
- common: 86400
- # jwt:
- # #JWT存储的请求头
- # tokenHeader: Authorization
- # #JWT加解密使用的密钥
- # secret: carbon-admin-secret
- # #JWT的超期限时间(60*60*24*7)
- # expiration: 604800
- # #JWT负载中拿到开头
- # tokenHead: Bearer
-
- carbon:
- wx:
- password: forest123456
- sms:
- accessKeyId: LTAICB9TH0OAN3yJ
- accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60
- signName: hywa
-
- wx:
- auth:
- baseurl: http://cqthht.hongweisoft.com/ht/wap/weChat/baseLogin
- redirecturl: http://cqthht.hongweisoft.com/ht/wap/weChat/doLogin
- weChatforwardurl: http://cqth.hongweisoft.com?userId=
- wxpaycallbackurl: http://cqthht.hongweisoft.com/ht/wap/weChat/payResultNotified
- mp:
- appId: wxbe90cc7c5233dd84
- secret: ec4a18ce1a7bcf17cf592c3d57cec68a
- aesKey: 123
- token: 123
- pay:
- appId: wxc950eea640108c5e
- mchId: 1583849731
- mchKey: B5F5A628C91D869F4CA357D2BCD63006
- wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/cqthminapp/carbon-h5/wechat/pay/payResultNotified
- flag: test
- ma:
- appId: wxc950eea640108c5e
- secret: 6df8516d6b483bc84368239c238c7cd6
- img:
- location: E:/FakeFTP/
- accessKeyId: LTAICB9TH0OAN3yJ
- accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60
- export:
- file:
- excel:
- path: E:/FakeFTP/
- signName: 慧云网安
|