java.io.IOException: Tried to send an out-of-range integer as a 2-byte value :79944

java.io.IOException: Tried to send an out-of-range integer as a 2-byte value :79944

当你使用JDBC组装预执行语句的时候,参数的数量是有一个限制的,限制的大小就是2个byte的整数的大小,也就是32767,当超过这个大小的时候你就会看到上面的错误。这是因为PostgreSQL客户端/后端协议规定从客户端发送到PostgreSQL后端的参数的数量为2个byte的integer。