标签:
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/luzhichao
jdbc.user=root
jdbc.password=lu123456
#<!--初始化连接-->
dataSource.initialSize=10
#<!--最大空闲连接-->
dataSource.maxIdle=20
#<!--最小空闲连接-->
dataSource.minIdle=5
#最大连接数量
dataSource.maxActive=50
#<!--超时等待时间以毫秒为单位6000毫秒/1000d等于6秒-->
dataSource.maxWait=1000
标签:
原文地址:http://www.cnblogs.com/Crow00/p/4488931.html