| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- server:
- port: 9999
- # 数据源
- spring:
- datasource:
- username: root
- # password: Chuanghai_2022.
- # url: jdbc:mysql://172.16.20.64:3306/tuition_payment?characterEncoding=utf-8&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true&serverTimezone=GMT%2B8
- driver-class-name: com.mysql.cj.jdbc.Driver
- password: root
- url: jdbc:mysql://127.0.0.1:3306/tuition_payment?characterEncoding=utf-8&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true&serverTimezone=GMT%2B8
- #配置文件传输的大小
- servlet:
- multipart:
- enabled: true
- file-size-threshold: 0
- max-file-size: 10MB
- max-request-size: 10MB
- # mybatis plus
- mybatis-plus:
- mapper-locations: classpath:/mapper/**/*.xml
- global-config:
- db-config:
- id-type: auto
- #开关闭mybatis-plus的日志sql语句打印
- configuration:
- #关闭sql打印
- log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
- # 前端应用地址
- fontendUrl: https://chtech.ncjti.edu.cn/jiaofei/jiaofeiH5
- # 微校相关配置
- weixiao:
- appKey: 580DBB565097446B
- appSecret: 067739D4E6FA31F90E7C08EF278967CF
- fontendUrl: ${fontendUrl}
- # 微信相关配置
- wechat:
- appid: wxd87cbe1db0437303
- secret: 18e17f97e674e1c03fc255f12d12ca4d
- fontendUrl: ${fontendUrl}
- # 建行相关配置
- ccb:
- # 商户代码
- merchantid: 105000082202756
- # 柜台代码
- posid: "056859026"
- # 分行代码
- branchid: 360000000
- # 操作密码
- qupwd: ncjtxy2020
- # 公钥-后30位
- pubShort: 5a557e34fcdc65f6a7af2785020111
- # 公钥-完整
- pub: 30819d300d06092a864886f70d010101050003818b0030818702818100de5637c55fea3904815c09c7af61acab34c0f57d7b415ebed4afd23445d05f63dc3923ba37948b92bc11a2fed074e248785b32d9cd2de90ce3012bf6f601f2a4bd34a0c5b3058f6321e43d4eea9bbb0a30dfd8ccccc702e238072289b6dc28c21e0e5d3f392d67e11da34fc59cabdbe293be4e125a557e34fcdc65f6a7af2785020111
- # 公众号id
- wxAppId: wxd87cbe1db0437303
- # 江西农商行相关配置
- jxnxs:
- openId: 6fc31630a4d3de99f5e41debbd35b9f0
- openKey: 5a920b634d6486fc2dd4342c6c5787b8
- logging:
- level:
- com.chuanghai: debug
|