hsqldb休眠持久化@Lob
Posted
技术标签:
【中文标题】hsqldb休眠持久化@Lob【英文标题】:hsqldb hibernate persist @Lob 【发布时间】:2014-08-11 15:05:00 【问题描述】:我正在尝试将一个长字符串持久化到数据库(异常的堆栈跟踪),我们使用 HSQLDB (2.2.9) 进行测试,使用 Postgre 进行运行时。
1) 我将字段注释为
@Lob
private String someBigMessage;
2) 编写迁移 DDL 脚本(flyway 但没关系)
..., some_big_message text, ...
3) 它可以迁移,但是当我执行使用 hsqldb 的 JUnit 测试时,我得到了这个:
org.springframework.orm.jpa.JpaSystemException: org.hibernate.exception.GenericJDBCException: could not execute statement; nested exception is javax.persistence.PersistenceException: org.hibernate.exception.GenericJDBCException: could not execute statement
...
Caused by: javax.persistence.PersistenceException: org.hibernate.exception.GenericJDBCException: could not execute statement
...
Caused by: org.hibernate.exception.GenericJDBCException: could not execute statement
...
Caused by: java.sql.SQLException: java.lang.RuntimeException: unsupported internal operation: Session java.lang.RuntimeException: unsupported internal operation: Session
...
Caused by: org.hsqldb.HsqlException: java.lang.RuntimeException: unsupported internal operation: Session
有什么建议吗? 谢谢。
【问题讨论】:
据此:***.com/a/14738657/174184,此问题已在 2.3.0 版中修复。考虑升级。 感谢您的快速回复。我之前检查过,但如果有不升级的解决方法,我会选择它。我不敢相信在2.3.0之前没有人坚持@Lob,这是一个如此普遍的操作:) 【参考方案1】:我已经迁移到 2.3.1,在同一个地方出错,但有更具体的解释:
HsqlException:数据异常:字符串数据,右截断 然后添加注解@Column:
@Lob
@Column(length=20971520)
private String someBigMessage;
然后迁移回 2.2.9 就可以了!
【讨论】:
以上是关于hsqldb休眠持久化@Lob的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 JPA 2.0、Spring 2.5.6、Hibernate 3.6.1 和 Maven 在 HSQLDB 中持久化