数据库
首页 > 数据库> > 异常总结(1):org.postgresql.util.PSQLException: 这个 ResultSet 已经被关闭

异常总结(1):org.postgresql.util.PSQLException: 这个 ResultSet 已经被关闭

作者:互联网

出现情况:整合spring+mybatis+postgreql时出现此错误

出现原因:postgresql的驱动版本过低

修改方案:提升postgresql的驱动版本如下

<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.5</version>
</dependency>

标签:PSQLException,postgresql,spring,ResultSet,版本,org,驱动
来源: https://www.cnblogs.com/devinseu/p/15151183.html