开发者

DBCL message on console

开发者 https://www.devze.com 2023-03-22 03:23 出处:网络
I am creating a database connection pool with following properties. <bean id=\"complianceCCRDataSource\" class=\"org.apache.commons.dbcp.BasicDataSource\"

I am creating a database connection pool with following properties.

<bean id="complianceCCRDataSource" class="org.apache.commons.dbcp.BasicDataSource" 
        destroy-method="close" lazy-init="false" >

    <property name="driverClassName" value="net.sourceforge.jtds.jdbc.Driver" /> 
    <property name="username" value="${deshaw.compliance.ccr.db.username}" />
    <property name="password" value="${deshaw.compliance.ccr.db.password}" />
    <property name="url" value="${deshaw.compliance.ccr.db.url}" />
    <property name="initialSize" value="5" />
    <property name="maxActive" value="10" />
    <property name="maxWait" value="60000"/>
    <property name="testOnBorrow" value="true" /> 
    <property name开发者_运维问答="validationQuery"> 
        <value>use ${deshaw.compliance.ccr.db.name} SELECT 1 
        </value> 
    </property>
    <property name="maxIdle" value="10" />
    <property name="removeAbandoned" value="true" />
    <property name="removeAbandonedTimeout" value="600" />
    <property name="logAbandoned" value="false" />
</bean>

When I try to instantiate the above bean, I am getting following messages on STDOUT. Is there any way I can suppress these ?

   AbandonedObjectPool is used (org.apache.commons.dbcp.AbandonedObjectPool@2d82ef6b)
   LogAbandoned: false
   RemoveAbandoned: true
   RemoveAbandonedTimeout: 600


You should use the setLogWriter() (see javadoc here) method as described in this JIRA.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号