JPA中@javax.persistence.Lob注解有什么意义?

What is the significance of @javax.persistence.Lob annotation in JPA?(JPA中@javax.persistence.Lob注解有什么意义?)
本文介绍了JPA中@javax.persistence.Lob注解有什么意义?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我什么时候应该在 JPA 中使用 @javax.persistence.Lob 注释?这个注解可以注解哪些数据类型?

解决方案

@javax.persistence.Lob 表示注解的字段应该在DataBase中表示为BLOB(二进制数据).p>

您可以使用此注解来注解任何 Serializable 数据类型.在 JPA 中,在持久化(检索)后,字段内容将使用标准 Java 序列化进行序列化(反序列化).

@Lob 的常见用途是在 Entity 中注释 HashMap 字段以存储一些未映射到 DB 列的对象属性.这样,所有未映射的值都可以以二进制表示形式存储在数据库中的一列中.当然,付出的代价是,由于它们以二进制格式存储,因此无法使用 JPQL/SQL 进行搜索.

When should I use @javax.persistence.Lob annotation in JPA? What datatypes can be annotated by this annotation?

解决方案

@javax.persistence.Lob signifies that the annotated field should be represented as BLOB (binary data) in the DataBase.

You can annotate any Serializable data type with this annotation. In JPA, upon persisting (retrieval) the field content will be serialized (deserialized) using standard Java serialization.

Common use of @Lob is to annotate a HashMap field inside your Entity to store some of the object properties which are not mapped into DB columns. That way all the unmapped values can be stored in the DB in one column in their binarry representation. Of course the price that is paid is that, as they are stored in binary format, they are not searchable using the JPQL/SQL.

这篇关于JPA中@javax.persistence.Lob注解有什么意义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

quot;Char cannot be dereferencedquot; error(“Char 不能被取消引用错误)
Java Switch Statement - Is quot;orquot;/quot;andquot; possible?(Java Switch 语句 - 是“或/“和可能的?)
Java Replace Character At Specific Position Of String?(Java替换字符串特定位置的字符?)
What is the type of a ternary expression with int and char operands?(具有 int 和 char 操作数的三元表达式的类型是什么?)
Read a text file and store every single character occurrence(读取文本文件并存储出现的每个字符)
Why do I need to explicitly cast char primitives on byte and short?(为什么我需要在 byte 和 short 上显式转换 char 原语?)