Java postgres jdbc驱动程序遇到了一个奇怪的问题

Java postgres jdbc驱动程序遇到了一个奇怪的问题,java,postgresql,jdbc,pgpool,Java,Postgresql,Jdbc,Pgpool,我将Postgres jdbc驱动程序与pgpool一起使用。遇到了这个非常奇怪的问题,它没有给我很多关于它抱怨什么的信息。 这是堆栈跟踪。有没有办法解决这个问题 Apr 19, 2018 3:28:39 PM org.postgresql.jdbc.PgConnection <init> FINE: PostgreSQL JDBC Driver 42.1.4 Apr 19, 2018 3:28:39 PM org.postgresql.jdbc.PgConnection setDe

我将Postgres jdbc驱动程序与pgpool一起使用。遇到了这个非常奇怪的问题,它没有给我很多关于它抱怨什么的信息。 这是堆栈跟踪。有没有办法解决这个问题

Apr 19, 2018 3:28:39 PM org.postgresql.jdbc.PgConnection <init>
FINE: PostgreSQL JDBC Driver 42.1.4
Apr 19, 2018 3:28:39 PM org.postgresql.jdbc.PgConnection setDefaultFetchSize
FINE:   setDefaultFetchSize = 0
Apr 19, 2018 3:28:39 PM org.postgresql.jdbc.PgConnection setPrepareThreshold
FINE:   setPrepareThreshold = 0
Apr 19, 2018 3:28:39 PM org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
FINE: Trying to establish a protocol version 3 connection to bdlgpmdev01.isus.emc.com:7500
Apr 19, 2018 3:28:39 PM org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
FINE: Receive Buffer Size is 184,640
Apr 19, 2018 3:28:39 PM org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
FINE: Send Buffer Size is 43,520
Apr 19, 2018 3:28:40 PM org.postgresql.jdbc.PgConnection isValid
WARNING: Validating connection.
org.postgresql.util.PSQLException: ERROR: invalid server parameter
    at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2477)
    at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2190)
    at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:300)
    at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:428)
    at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:354)
    at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:169)
    at org.postgresql.jdbc.PgPreparedStatement.executeUpdate(PgPreparedStatement.java:136)
    at org.postgresql.jdbc.PgConnection.isValid(PgConnection.java:1311)`
2018年4月19日下午3:28:39 org.postgresql.jdbc.PgConnection
好:PostgreSQL JDBC驱动程序42.1.4
2018年4月19日下午3:28:39 org.postgresql.jdbc.PgConnection setDefaultFetchSize
精细:setDefaultFetchSize=0
2018年4月19日下午3:28:39 org.postgresql.jdbc.PgConnection setPrepareThreshold
精细:setPrepareThreshold=0
2018年4月19日下午3:28:39 org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
很好:尝试建立到bdlgpmdev01.isus.emc.com的协议版本3连接:7500
2018年4月19日下午3:28:39 org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
精细:接收缓冲区大小为184640
2018年4月19日下午3:28:39 org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
精细:发送缓冲区大小为43520
2018年4月19日下午3:28:40 org.postgresql.jdbc.PgConnection有效
警告:正在验证连接。
org.postgresql.util.PSQLException:错误:无效的服务器参数
位于org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2477)
位于org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2190)
位于org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:300)
位于org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:428)
位于org.postgresql.jdbc.PgStatement.execute(PgStatement.java:354)
位于org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:169)
位于org.postgresql.jdbc.PgPreparedStatement.executeUpdate(PgPreparedStatement.java:136)
位于org.postgresql.jdbc.PgConnection.isValid(PgConnection.java:1311)`

请添加您尝试连接时使用的代码。您的Postgres版本是什么?驱动程序版本?pgPool版本?针对Greenplum 5.4.1运行它。