标签:
jdbc.driverClassName=org.postgresql.Driver jdbc.url=jdbc:postgresql://localhost:5432/luzhichao jdbc.username=postgres jdbc.password=lu123456 #<!--初始化连接--> dataSource.initialSize=10 #<!--最大空闲连接--> dataSource.maxIdle=20 #<!--最小空闲连接--> dataSource.minIdle=5 #最大连接数 dataSource.maxActive=50 #<!--超时等待时间以毫秒为单位60000毫秒/1000等于60秒--> dataSource.maxWait=1000
标签:
原文地址:http://www.cnblogs.com/Crow00/p/4603354.html