我一直在使用hibernate-spatial与以Geography为列的postgis表进行交互。所有内容都已使用hibernate-spatial成功保存,但是当我们尝试从postgis表加载数据时,后面遇到以下异常: java.lang.IllegalArgumentException:无法转换org.postgresql.util.PGobject类型的对象 我检查了hibernate-spatial代码,发现PGGeometryValueExtractor的toJTS(Object object)方法抛出了异常,因为Geography没有在代码中处理。 有没有办法使用hibernate-spatial读取postgis Geography对象。