我的 Web 应用程序(Java jsf icefaces - jboss)使用hibernate连接到 Oracle 。它工作正常,但如果有一段时间的用户不活动(几个小时),当用户尝试进行查询时,会发生此错误:java.sql.SQLException:Io 异常:对等连接重置:套接字写入错误
该应用程序被 3/4 的用户使用,因此打开的连接数量非常少。我可以解决重启 jboss 服务器的问题。
下面显示了应用程序使用的 hibernate.cfg.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- <property name="connection.datasource">portaleClientiOracleDS</property> -->
<property name="transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
<property name="current_session_context_class">thread</property>
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="hibernate.connection.password">Alfre$cost12</property>
<property name="hibernate.connection.url">jdbc:oracle:thin:@172.16.216.109:1521:ALFHIST</property>
<property name="hibernate.connection.username">ALFRESCOST</property>
<!-- <property name="hibernate.default_catalog">ALFRESCOST</property>-->
<!-- <property name="hibernate.default_schema">ALFRESCOST</property>-->
<property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property>
<property name="show_sql">false</property>
<property name="use_outer_join">true</property>
<property name="cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
<property name="c3p0.acquire_increment">1</property>
<property name="c3p0.idle_test_period">100</property> <!-- seconds -->
<property name="c3p0.max_size">100</property>
<property name="c3p0.max_statements">0</property>
<property name="c3p0.min_size">10</property>
<property name="c3p0.timeout">100</property>
<property name="c3p0.preferredTestQuery">SELECT 1 FROM DUAL</property>
<property name="c3p0.testConnectionOnCheckout">true</property>
<mapping resource="it/pillar/accenture/portaleclienti/businesslayer/clienti/dao/hibernate/mappings/StoricoPillar.hbm.xml"/>
</session-factory>
</hibernate-configuration>
我试图增加 c3p0 值,但问题仍然存在。任何建议表示赞赏
谢谢