12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- server:
- port: 8899
- wx:
- mp:
- appId: wxbe90cc7c5233dd84
- secret: ec4a18ce1a7bcf17cf592c3d57cec68a
- url: http://wx.hw.hongweisoft.com/wxpaydemoapi/wechat/h5/userInfo
- token: 123
- aesKey: 123
- before: http://wx.hw.hongweisoft.com/wxpaydemoapi/wechat/h5/authorize?returnUrl=http://wx.hw.hongweisoft.com/wxpaydemoh5
- ma:
- appId: wxbe90cc7c5233dd84
- secret: ec4a18ce1a7bcf17cf592c3d57cec68a
- pay:
- wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/wxpaydemoapi/app/payResult
- wxpayRefundCallBackUrl: http://wx.hw.hongweisoft.com/wxpaydemoapi/app/refundResult
- mchId: 1583849731
- appId: wxbe90cc7c5233dd84
- mchKey: B5F5A628C91D869F4CA357D2BCD63006
- keyPath: classpath:apiclient_cert.p12
- spring:
- redis:
- host: 127.0.0.1
- port: 6379
- password:
- database: 0
- timeout: 10000
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: 123456
- url: jdbc:mysql://localhost:3306/demo?characterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true
- type: com.zaxxer.hikari.HikariDataSource
- hikari:
- pool-name: HikariCP
- minimum-idle: 10
- idle-timeout: 600000
- maximum-pool-size: 50
- auto-commit: true
- max-lifetime: 1800000
- connection-timeout: 30000
- jwt:
- tokenHeader: Authorization
- secret: forest-admin-secret
- expiration: 604800
- tokenHead: Bearer
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- mapper-locations: classpath*:mapper/*.xml
- type-aliases-package: com.example.entity
|