MySQL環境では(たぶんPostgresql環境でも?)下記のURLの設定手順ではBIサーバ8h放置プレーで以下のエラーが表示される。
http://www.prashantraju.com/projects/pentaho/ERROR [JDBCExceptionReporter] No operations allowed after connectio
n closed.Connection was implicitly closed by the driver.
理由については下記のP49参照。
対処方法は
C:\biserver-ce-x.x.x-stable\biserver-ce\pentaho-solutions\system\hibernate\mysql5.hibernate.cfg.xmlの<session-factory>配下に以下を記載。
<property name="hibernate.c3p0.acquire_increment">3</property>
<property name="hibernate.c3p0.idle_test_period">14400</property>
<property name="hibernate.c3p0.min_size">5</property>
<property name="hibernate.c3p0.max_size">75</property>
<property name="hibernate.c3p0.max_statements">0</property>
<property name="hibernate.c3p0.timeout">25200</property>
<property name="hibernate.c3p0.preferredTestQuery">select 1</property>
<property name="hibernate.c3p0.testConnectionOnCheckout">true</property>
下記ディレクトリ配下に
C3P0(c3p0-x.x.x.x.jar)を保存する。
C:\biserver-ce-x.x.x-stable\biserver-ce\tomcat\lib