2010-07-12 5 views
0

최대 절전 모드가 시작될 때 이상한 메시지가 표준으로 출력되고 문제를 진단하는 데 어려움이 있습니다. 여기 최대 절전 모드 시작 오류

가 출력합니다 메시지입니다 (내 이클립스 콘솔에서 적색으로 표시됩니다, 그래서 난 그게 표준 오류에 기록 된 의미 생각) :

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> 

, 난 내 로그 파일에 들어가는 난수 해독 텍스트가하지 않으 단지 것이다.

나는 주위를 검색해 봤지만 이것에 대해 아무것도 찾을 수없는 것 같습니다.

미리 감사드립니다.

답변

4

왜 이것이 오류라고 생각하십니까? 그렇지 않습니다. 인쇄 된 연결 풀의 옵션입니다.

+0

표준 오류에 인쇄 되었기 때문에 오류라고 가정합니다. 오류가 아니라면 오류를 억제하는 방법을 알고 있습니까? – luke

+0

아마도 최신 버전의 연결 풀 (c3p0) – Bozho