12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- server:
- #端口号
- port: 8080
- tomcat:
- basedir: F:/kaifa/temp #文件上传临时路径
- #文件上传方式 1-本机 2-oss
- file:
- uploadType: 2
- path: /root/erp/apk #文件上传根目录
- spring:
- #数据库连接
- datasource:
- url: jdbc:mysql://localhost:3306/jsh_erp?useUnicode=true&characterEncoding=utf8&useCursorFetch=true&defaultFetchSize=500&allowMultiQueries=true&rewriteBatchedStatements=true&useSSL=false
- driverClassName: com.mysql.cj.jdbc.Driver
- username: root
- password: 123456
- # Redis
- redis:
- host: 127.0.0.1
- port: 6379
- password: foobared
- aliyun:
- accessKeyId: LTAI5tAWjmJQaDBF6u7JAgap
- secretAccessKey: t9ffHVVngMbMZcVPXtgxF6NU9lHc95
- oss:
- endPoint: oss-cn-hangzhou.aliyuncs.com
- bucketName: xiangli-erp
- miniProgramAppId: wxd716cb744e32271a
- linkUrl: https://xiangli-erp.oss-cn-hangzhou.aliyuncs.com
- tesco:
- openSycn: false
- sycnErpMaterialStockUrl: http://localhost:8088/no-auth/erp/sync-stock
- sycnErpMaterialPriceUrl: http://localhost:8088/no-auth/erp/sync-saleprice
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- # log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
- default-executor-type: simple
|