27 lines
654 B
YAML
27 lines
654 B
YAML
|
|
|
|||
|
|
# 数据库连接
|
|||
|
|
jdbc:
|
|||
|
|
|
|||
|
|
# Mysql 数据库配置
|
|||
|
|
type: mysql
|
|||
|
|
driver: com.mysql.jdbc.Driver
|
|||
|
|
url: jdbc:mysql://192.168.56.1:3306/jeesite?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
|
|||
|
|
username: jeesite
|
|||
|
|
password: jeesite
|
|||
|
|
testSql: SELECT 1
|
|||
|
|
|
|||
|
|
# MyBatis 相关
|
|||
|
|
mybatis:
|
|||
|
|
|
|||
|
|
# Mapper文件刷新线程
|
|||
|
|
mapper:
|
|||
|
|
refresh:
|
|||
|
|
enabled: false
|
|||
|
|
|
|||
|
|
# 文件相关
|
|||
|
|
file:
|
|||
|
|
|
|||
|
|
# 文件上传根路径,设置路径中不允许包含“userfiles”,在指定目录中系统会自动创建userfiles目录,如果不设置默认为contextPath路径
|
|||
|
|
baseDir: /root/jeesite
|
|||
|
|
|