休眠启动错误

时间:2010-07-12 23:40:56

标签: java hibernate configuration

我在hibernate启动时遇到一个奇怪的消息打印到标准我正在诊断它。

这是打印出的消息(它在我的eclipse控制台中显示为红色,所以我相信这意味着它被写入标准错误):

initialPoolSize-> coercedPropVal: 1
maxIdleTime-> coercedPropVal: 1500
maxPoolSize-> coercedPropVal: 15
maxStatements-> coercedPropVal: 50
minPoolSize-> coercedPropVal: 1
initialPoolSize-> coercedPropVal: 1
maxIdleTime-> coercedPropVal: 1500
maxPoolSize-> coercedPropVal: 15
maxStatements-> coercedPropVal: 50
minPoolSize-> coercedPropVal: 1

没有错误消息或任何其他内容。这是我的hibernate.cfg.xml

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration
    PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
    <!-- local connection properties -->
    <property name="connection.provider_class">
        org.hibernate.connection.C3P0ConnectionProvider
    </property>
    <property name="hibernate.connection.url">
        URL...
    </property>
    <property name="hibernate.connection.driver_class">
        oracle.jdbc.driver.OracleDriver
    </property>
    <property name="hibernate.jdbc.batch_size">20</property>
    <property name="hibernate.connection.username">USER_NAME</property>
    <property name="hibernate.connection.password">PASSWORD</property>
    <property name="hibernate.c3p0.min_size">1</property>
    <property name="hibernate.c3p0.max_size">15</property>
    <property name="hibernate.c3p0.timeout">1500</property>
    <property name="hibernate.c3p0.max_statements">50</property>
    <property name="hibernate.order_inserts">true</property>
    <property name="hibernate.current_session_context_class">thread</property>
    <property name="hibernate.dialect">
        org.hibernate.dialect.Oracle10gDialect
    </property>

    <property name="hibernate.show_sql">false</property>
    <property name="hibernate.transaction.factory_class">
        org.hibernate.transaction.JDBCTransactionFactory
    </property>

    <mapping ...>
    <mapping ...>
</session-factory>
</hibernate-configuration>

尽管有这个错误,一切都在项目中正常工作,我只是不希望这个随机难以理解的文本进入我的日志文件。

我试过四处寻找,但我似乎无法找到任何相关内容。

提前致谢

1 个答案:

答案 0 :(得分:4)

为什么你认为这是一个错误?它不是 - 它是打印出的连接池的选项。