1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- server:
- port: 8099
- tomcat:
- uri-encoding: UTF-8
- servlet:
- context-path: /mapi
- app.id: aska-admin
- mybatis:
- configuration:
- callSettersOnNulls: true
- typeAliasesPackage: com.mofangchuxing.aska.dao.domain
- mapperLocations: classpath:mapper/*.xml
- spring:
- redis:
- open: true # 是否开启redis缓存 true开启 false关闭
- database: 0
- host: 127.0.0.1 # 测试环境redis
- port: 6379
- password: # 密码(默认为空)
- jedis:
- pool:
- max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
- max-idle: 10 # 连接池中的最大空闲连接
- min-idle: 5
- max-active: 1000 # 连接池中的最小空闲连接
- datasource:
- druid:
- name: master
- url: jdbc:mysql://localhost:55000/aska?&zeroDateTimeBehavior=convertToNull&useSSL=false
- username: root
- password: mysqlpw
- driver-class-name: com.mysql.jdbc.Driver
- type: com.alibaba.druid.pool.DruidDataSource
- timeBetweenEvictionRunsMillis: 600000
- validationQuery: select 1
- initialSize: 20
- minIdle: 5
- maxActive: 20
- maxWait: 3000
- #微信支付配置
- wx:
- app-id: wxc6eeeba72fd3ed01
- #app端的appId
- app-appid: wxe5251793c19a48d5
- mch-id: 1641830577
- api-key: a8babfa0d75ac878dd76dc905bf677e2
- apiv3-key: 87b90c2065d9caa1c767ff1b15b21e52
- api-serial-no: 22098B381BAE268F47FE823C70C3AA7702EE54C4
- public-serial-no: 5BB0B8268EB289373EDFA3B1572FE3F2F8FD3B80
- unified-order-url: https://api.mch.weixin.qq.com/pay/unifiedorder
- notify-url: https://biketest.mofangchuxing.com/askay/notify
- refund-notify-url: https://test-crm2gw.adb-tech.com/market/client/refundNotify
|