08-11-17 10:21:34 INFO ProxoolFacade:80 - Proxool 0.9.0RC2 (23-Mar-2006 23:39)
[color=red]08-11-17 10:21:34 WARN DBPool:321 - Use of proxool.maximum-new-connections is deprecated. Use more descriptive proxool.simultaneous-build-throttle instead.[/color]08-11-17 10:21:34 INFO Http11BaseProtocol:156 - Starting Coyote HTTP/1.1 on http-8081
虽然一直都是warn. 但老是出现...是什么问题?
[quote]Use of proxool.maximum-new-connections is deprecated. Use more descriptive proxool.simultaneous-build-throttle instead.[/quote]
这个只是提醒你,你的proxool的配置参数maximum-new-connections已经不被推荐使用了,你应该用simultaneous-build-throttle替换它。
[quote]
simultaneous-build-throttle:
This is the maximum number of connections we can be building at any one time. That is, the number of new connections that have been requested but aren't yet available for use. Because connections can be built using more than one thread (for instance, when they are built on demand) and it takes a finite time between deciding to build the connection and it becoming available we need some way of ensuring that a lot of threads don't all decide to build a connection at once. (We could solve this in a smarter way - and indeed we will one day) Default is 10.
[/quote]
修改一下你的连接池配置文件就行了。