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