12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- server:
- port: 8085
- spring:
- application:
- name: caimei-starstyle #指定服务名
- #数据源连接--start
- datasource:
- driverClassName: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://rm-wz928s8btl7kxil44.mysql.rds.aliyuncs.com:3306/caimei?characterEncoding=utf8&useSSL=false&rewriteBatchedStatements=true
- username: coder
- password: diKtPYZ%wToI&9#L
- #数据源连接--end
- #模板引擎配置
- thymeleaf:
- #路径
- prefix: classpath:/templates/
- #取消thymeleaf对页面的强制校验
- content-type: text/html
- mode: LEGACYHTML5
- cache: false
- #整合mybatis
- mybatis:
- #加载Mybatis映射文件
- mapper-locations:
- - classpath:mapper/*.xml
- - classpath:caimei-search-mapper/*Mapper.xml
- - classpath:com-caimei-module-pay/*Mapper.xml
- #pojo别名扫描包
- type-aliases-package: com.caimei.entity
- #分页配置
- pagehelper:
- helperDialect: mysql
- reasonable: true
- supportMethodsArguments: true
- params: count=countSql
- #日志配置
- logging:
- path: /mnt/newdatadrive/data/runtime/jar-instance/mall/logs/catalina.out
- level:
- root: info
- miniprogram:
- #邀请码有效时长 /天
- ValidTime: 7
- domain: https://www.caimei365.com
- #组织appid1....2....3,星范组织
- AppId1: wx5a5cda32926f55ac
- AppSecret1: 1c371e72aba710949dd74bb184a3a774
- #采美组织
- AppId2: wxf3cd4ae0cdd11c36
- AppSecret2: 9bdb37d28c5e74ad3694c09c205e9bd2
- #crm公众号信息
- crm_AppId: wxea43a0f9ebce9e66
- crm_AppSecret: 1c3cd60908e72dd280840bee9e15f7f6
- #支付异步回调地址
- notifyUrl: https://mall.caimei365.com/PayOrder/paymentCallback
- #支付链接重定向地址
- redirectLink: https://mall.caimei365.com/PayOrder/jumpPage
- #链接页面
- linkPage: https://www-b.caimei365.com/web/order/view/pay/caimei-starspay.jsp
|