2024-06-18 20:22:11 +08:00

101 lines
2.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#
# Copyright (c) 2023 looly(loolly@aliyun.com)
# Hutool is licensed under Mulan PSL v2.
# You can use this software according to the terms and conditions of the Mulan PSL v2.
# You may obtain a copy of Mulan PSL v2 at:
# https://license.coscl.org.cn/MulanPSL2
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
# See the Mulan PSL v2 for more details.
#
# suppress inspection "Annotator" for whole file
#===================================================================
# 数据库配置文件样例
# DsFactory默认读取的配置文件是config/db.setting
# db.setting的配置包括两部分基本连接信息和连接池配置信息。
# 基本连接信息所有连接池都支持,连接池配置信息根据不同的连接池,连接池配置是根据连接池相应的配置项移植而来
#===================================================================
## 打印SQL的配置
# 是否在日志中显示执行的SQL默认false
showSql = true
# 是否格式化显示的SQL默认false
formatSql = true
# 是否显示SQL参数默认false
showParams = true
# 打印SQL的日志等级默认debug
sqlLevel = debug
# 默认数据源
url = jdbc:sqlite:test.db
remarks = true
# 测试数据源
[test]
url = jdbc:sqlite:test.db
remarks = true
driver = org.sqlite.JDBC
# 测试用HSQLDB数据库
[hsqldb]
url = jdbc:hsqldb:mem:mem_hutool
user = SA
pass =
remarks = true
# 测试用HSQLDB数据库
[h2]
url = jdbc:h2:mem:h2_hutool
user = sa
pass =
remarks = true
# 测试用HSQLDB数据库
[derby]
url = jdbc:derby:.derby/test_db;create=true
remarks = true
# 测试用Oracle数据库
[orcl]
url = jdbc:oracle:thin:@//localhost:1521/XEPDB1
user = system
pass = 123456
remarks = true
[mysql]
url = jdbc:mysql://looly.centos8:3306/hutool_test?useSSL=false
user = root
pass = 123456
remarks = true
[postgre]
url = jdbc:postgresql://looly.centos:5432/test_hutool
user = postgres
pass = 123456
remarks = true
[sqlserver]
url = jdbc:sqlserver://looly.database.chinacloudapi.cn:1433;database=test;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.database.chinacloudapi.cn;loginTimeout=30;
user = looly@looly
pass = 123
remarks = true
# 测试用达梦8数据库
# 测试环境使用docker启动https://eco.dameng.com/document/dm/zh-cn/start/dm-install-docker.html
[dm]
url = jdbc:dm://localhost:5236
user = SYSDBA
pass = SYSDBA001
remarks = true
# OceanBase
# 测试环境使用docker启动https://www.oceanbase.com/docs/common-oceanbase-database-cn-1000000000217958
[ob]
url = jdbc:oceanbase://localhost:2881/test
user = root
pass = 123456
remarks = true