2019-04-27 21:41:18 +08:00
|
|
|
|
|
|
|
|
|
|
# 数据库连接
|
|
|
|
|
|
jdbc:
|
|
|
|
|
|
|
|
|
|
|
|
# Mysql 数据库配置
|
|
|
|
|
|
type: mysql
|
2020-03-29 22:02:50 +08:00
|
|
|
|
driver: com.mysql.cj.jdbc.Driver
|
2020-07-24 16:01:45 +08:00
|
|
|
|
url: jdbc:mysql://192.168.56.1:3306/jeesite?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai
|
2019-04-27 21:41:18 +08:00
|
|
|
|
username: jeesite
|
|
|
|
|
|
password: jeesite
|
|
|
|
|
|
testSql: SELECT 1
|
|
|
|
|
|
|
|
|
|
|
|
# MyBatis 相关
|
|
|
|
|
|
mybatis:
|
|
|
|
|
|
|
|
|
|
|
|
# Mapper文件刷新线程
|
|
|
|
|
|
mapper:
|
|
|
|
|
|
refresh:
|
|
|
|
|
|
enabled: false
|
|
|
|
|
|
|
|
|
|
|
|
# 文件相关
|
|
|
|
|
|
file:
|
|
|
|
|
|
|
|
|
|
|
|
# 文件上传根路径,设置路径中不允许包含“userfiles”,在指定目录中系统会自动创建userfiles目录,如果不设置默认为contextPath路径
|
2020-06-06 09:56:31 +08:00
|
|
|
|
baseDir: /root
|
2019-04-27 21:41:18 +08:00
|
|
|
|
|