如何解决“方法 org.postgresql.jdbc.PgConnection.createBlob() 尚未实现”
Posted
技术标签:
【中文标题】如何解决“方法 org.postgresql.jdbc.PgConnection.createBlob() 尚未实现”【英文标题】:How to resolve "Method org.postgresql.jdbc.PgConnection.createBlob() is not yet implemented" 【发布时间】:2021-03-13 15:10:04 【问题描述】:我已经看到有关如何解决 org.postgresql.jdbc.PgConnection.createClob() is not yet implemented
的帖子,并且我已按照有关 createClob() 问题的帖子的建议应用了 spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
。我的问题是我收到了 is not yet implemented
消息,但特别参考了 createBlob() 方法。
对于 createBlob() 方法,我该如何解决这个问题?
休眠核心 5.4.20
Postgre 42.2.18
Spring Boot 2.3.3
【问题讨论】:
【参考方案1】:我最终使用了https://jdbc.postgresql.org/documentation/head/binary-data.html 指定的字节数组。该页面还讨论了如何使用大对象 (BLOB) 功能。
【讨论】:
【参考方案2】:方法 createBlob 即将在 Postgres 42.3.0 中实现: https://github.com/pgjdbc/pgjdbc/pull/1272/files
https://github.com/pgjdbc/pgjdbc/projects/2#card-11520125
【讨论】:
以上是关于如何解决“方法 org.postgresql.jdbc.PgConnection.createBlob() 尚未实现”的主要内容,如果未能解决你的问题,请参考以下文章