db.properties是干什么用的

时间:2022-09-30 08:54:23
连接池配置文件db.properties是java中采用数据库连接池技术完成应用对数据库的操作的配置文件信息的文件。
具体配置项目如下:
drivers=com.microsoft.sqlserver.jdbc.SQLServerDriver
注册驱动,sqlsever,oracle,mysql都行
logfile=d:\\log.txt 日志文件的位置 customer_system.url=jdbc:sqlserver://192.168.2.252:2433;
DatabaseName=customer_system 数据库的url
customer_system.user=sa 用户名
customer_system.password=SA 密码
customer_system.maxConns=5 最大连接数
customer_system.minConns=1 最小连接数
customer_system.logInterval=60000 监听时长