配置连接池

最后更新:2024-09-06 05:30:00 | 状态:未完成

配置连接池默认就是注册数据源时配置文件中的连接参数,如
anyline.datasource.pg.driver-class-name=org.postgresql.Driver
anyline.datasource.pg.url=jdbc:postgresql://localhost:35432/simple
anyline.datasource.pg.username=postgres
anyline.datasource.pg.password=Docker_postgres_5432
anyline.datasource.pg.pool-name=docs-HikariPool
anyline.datasource.pg.connectionTestQuery=SELECT 1
anyline.datasource.pg.connectionTimeout=300000
anyline.datasource.pg.idleTimeout=30000
anyline.datasource.pg.maxLifetime=500000
anyline.datasource.pg.initializationFailTimeout=1

参考【各连接池参数
如果是动态数据源
1.直接创建连接池 如DataSource ds = new DruidDataSource() 再设置各种参数,JDBCDatasourceHolder.reg("ds_id", ds);

2.把参数放到map里调用JDBCDatasourceHolder.reg("ds_id", map)

首页 最近更新 搜索 提交 回复