当前位置:   article > 正文

postgresql java.net.SocketException: Connection reset by peer: socket write error 错误发生_postgresql connection reset by peer

postgresql connection reset by peer

removeAbandonedTimeout 设置的时间太短导致,对应的调整一下时间就可以了。

 

  1. <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource"
  2. destroy-method="close">
  3. <property name="driverClassName" value="org.postgresql.Driver"/>
  4. <property name="url" value="jdbc:postgresql://192.168.0.1:5432/DB1"/>
  5. <property name="username" value="username"/>
  6. <property name="password" value="password"/>
  7. <property name="initialSize" value="310"/>
  8. <property name="maxTotal" value="310"/>
  9. <property name="maxIdle" value="310"/>
  10. <property name="maxWaitMillis" value="30000"/>
  11. <property name="removeAbandonedOnBorrow" value="true"/>
  12. <!-- Timeout时间太短 -->
  13. <!-- <property name="removeAbandonedTimeout" value="30"/> -->
  14. <property name="removeAbandonedTimeout" value="43200"/>
  15. <property name="logAbandoned" value="true"/>
  16. </bean>

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/561560
推荐阅读
相关标签
  

闽ICP备14008679号