You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
# 端口号配置
|
|
server:
|
|
port: 8089
|
|
|
|
# 数据库连接配置
|
|
spring:
|
|
datasource:
|
|
type: com.alibaba.druid.pool.DruidDataSource
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/order-system?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
|
username: root
|
|
password: 123456
|
|
druid:
|
|
# 添加基本的Druid连接池配置
|
|
initial-size: 5
|
|
min-idle: 5
|
|
max-active: 20
|
|
test-on-borrow: true
|
|
validation-query: SELECT 1
|
|
#图片上传
|
|
web:
|
|
uploadpath: D:/images/ #图片上传的路径
|
|
load-path: file:D://images/ #图片访问、加载的路径
|
|
# MyBatis Plus配置
|
|
mybatis-plus:
|
|
configuration:
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
global-config:
|
|
db-config:
|
|
# 配置MyBatis Plus在更新时间更新非空和非NULL的字段
|
|
update-strategy: not_empty
|
|
|
|
# 微信小程序相关
|
|
Wechat:
|
|
Applets:
|
|
# 小程序appID
|
|
appId: wx6a41b250d82adc97
|
|
# 小程序秘钥
|
|
appSecret: 3bd822fb2c28fe7ba492ae7afd1fbd6e
|
|
|
|
# 日志配置
|
|
logging:
|
|
level:
|
|
root: info
|
|
com.itmk: debug # 设置项目的包名为debug级别
|
|
pattern:
|
|
console: '%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{50} - %msg%n' |