gpt4 book ai didi

java - 使用 jetty 重置连接 SQLException

转载 作者:行者123 更新时间:2023-12-01 05:56:13 26 4
gpt4 key购买 nike

我已将网络服务器从 tomcat 切换到 jetty,并在从空闲时间返回时遇到“java.sql.SQLException:Io 异常:连接重置”(例如,我出去了一段时间):(

当我使用tomcat时,不会出现这个问题。它是来自 jetty 还是我做错了什么?

这是我的数据源配置

<bean id="dataSourceOracle" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="oracle.jdbc.driver.OracleDriver"></property>
<property name="jdbcUrl" value="jdbc:oracle:thin:@127.0.0.1:1521:ORCL"/>
<property name="user" value="admin"/>
<property name="password" value="123"/>
<property name="initialPoolSize" value="0"></property>
<property name="minPoolSize" value="0"></property>
<property name="maxPoolSize" value="100"/>
</bean>

<bean id="hibernateSessionFactory2" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSourceOracle"/>
<property name="mappingLocations">
<list>
<value>classpath:hibernate/mapping/User.hbm.xml</value>
<value>classpath:hibernate/mapping/Address.hbm.xml</value>
<value>classpath:hibernate/mapping/Province.hbm.xml</value>
<value>classpath:hibernate/mapping/Service.hbm.xml</value>
<value>classpath:hibernate/mapping/AccessLog.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<value>
hibernate.connection.shutdown=false
hibernate.show_sql=true
hibernate.dialect=org.hibernate.dialect.Oracle10gDialect
</value>
</property>
</bean>

谢谢!

最佳答案

它在数据源定义中使用不同的连接设置/池吗?

关于java - 使用 jetty 重置连接 SQLException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2875398/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com