java.lang.UnsupportedOperationException:Blob 不可缓存

发布于 2024-12-09 18:28:23 字数 150 浏览 1 评论 0原文

将 java.sql.Blob 字段添加到我的一个对象后,hibernate 持久性管理器现在抛出 Blob 不可缓存异常。

除了禁用缓存之外,您知道如何解决此问题。我尝试让这个场变得短暂,但当然没有成功。

顺便说一句,我使用最新的 Spring 框架。

After adding java.sql.Blob field to one of my objects the hibernate persistence manager is now throwing Blobs are not cacheable exception.

Any idea how to solve this other than disabling the cache. I tried making the field transient but of course with no success.

BTW I use the latest Spring Framework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星光不落少年眉 2024-12-16 18:28:23

你有2个选择。

  1. 如果您不需要缓存相关的 blob 数据,请将其移动到未缓存的辅助 hibernate 对象中,
  2. 如果您确实希望缓存数据(在这种情况下,我会假设它的大小有限),那么您可以使用 hibernate将数据映射到字节[](我相信是“二进制”)的类型 - http://www.mkyong.com/hibernate/hibernate-save-image-into-database/

You have 2 choices.

  1. if you don't need the relevant blob data cached, move it into a secondary hibernate object which is not cached
  2. if you do want the data cached (in which case i would assume it has a limited size), then you can use the hibernate type which maps the data to/from a byte[] ("binary" i believe) - http://www.mkyong.com/hibernate/hibernate-save-image-into-database/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文