2018-01-10 23:39:55 +08:00
|
|
|
|
|
|
|
|
#============================#
|
|
|
|
|
#===== Database sttings =====#
|
|
|
|
|
#============================#
|
|
|
|
|
|
|
|
|
|
# 数据库连接
|
|
|
|
|
jdbc:
|
|
|
|
|
|
2018-01-27 17:12:09 +08:00
|
|
|
# Mysql 数据库配置
|
|
|
|
|
# type: mysql
|
|
|
|
|
# driver: com.mysql.jdbc.Driver
|
|
|
|
|
# url: jdbc:mysql://127.0.0.1:3306/jeesite4?useUnicode=true&characterEncoding=utf-8
|
|
|
|
|
# username: root
|
|
|
|
|
# password: 123456
|
|
|
|
|
# testSql: SELECT 1
|
|
|
|
|
|
2018-01-10 23:39:55 +08:00
|
|
|
# Oracle 数据库配置
|
|
|
|
|
type: oracle
|
|
|
|
|
driver: oracle.jdbc.driver.OracleDriver
|
|
|
|
|
url: jdbc:oracle:thin:@127.0.0.1:1521/orcl
|
|
|
|
|
username: jeesite
|
|
|
|
|
password: jeesite
|
|
|
|
|
testSql: SELECT 1 FROM DUAL
|
2018-01-27 17:12:09 +08:00
|
|
|
|
2018-01-20 00:13:07 +08:00
|
|
|
# Redis 配置
|
|
|
|
|
redis:
|
|
|
|
|
|
|
|
|
|
# Redis 连接参数
|
|
|
|
|
host: 192.168.11.12
|
|
|
|
|
port: 6379
|
|
|
|
|
password: 1234
|
|
|
|
|
|
|
|
|
|
# 是否启用Redis系统缓存及会话
|
|
|
|
|
cacheAndSession: false
|
|
|
|
|
|
2018-01-10 23:39:55 +08:00
|
|
|
#============================#
|
|
|
|
|
#===== System settings ======#
|
|
|
|
|
#============================#
|
|
|
|
|
|
|
|
|
|
#产品信息设置
|
|
|
|
|
productName: JeeSite Demo
|
|
|
|
|
productVersion: V4.0
|
|
|
|
|
copyrightYear: 2018
|
|
|
|
|
companyName: ThinkGem
|
|
|
|
|
|
|
|
|
|
#是否演示模式
|
|
|
|
|
demoMode: false
|