1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- spring:
- #数据源连接--start
- datasource:
- #driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://192.168.2.100:3306/caimei?characterEncoding=UTF8&serverTimezone=Asia/Shanghai
- username: developer
- password: 05bZ/OxTB:X+yd%1
- type: com.zaxxer.hikari.HikariDataSource
- hikari:
- minimum-idle: 5
- maximum-pool-size: 15
- auto-commit: true
- idle-timeout: 30000
- pool-name: DatebookHikariCP
- max-lifetime: 1800000
- connection-timeout: 30000
- connection-test-query: SELECT 1
- #数据源连接--end
- #上传文件大小
- servlet:
- multipart:
- max-file-size: 10MB
- max-request-size: 100MB
- #日志配置
- logging:
- level:
- root: info
- com.caimei.mapper: debug
- com.caimei.module.product.dao: debug
- # swagger文档显示配置
- swagger:
- enabled: true
- #自定义配置
- wx:
- AppId: wxca7172d7a20bdf7a
- AppSecret: d7f853a64b73d01ef93f3829852a790e
- crmAppId: wxea43a0f9ebce9e66
- crmAppSecret: 1c3cd60908e72dd280840bee9e15f7f6
- # 新旧www服务域名
- caimei:
- oldapi: http://localhost:8100
- #支付异步回调地址
- notifyUrl: https://spi-b.caimei365.com/PayOrder/paymentCallback
- #支付链接重定向地址
- redirectLink: https://spi-b.caimei365.com/PayOrder/jumpPage
|