Bắt đầu với 2.11
phiên bản của dự án Hibernate Types, bạn chỉ có thể sử dụng JsonType
, hoạt động với PostgreSQL, MySQL, Oracle, SQL Server hoặc H2.
Vì vậy, hãy sử dụng JsonType
thay vì JsonBinaryType
hoặc JsonStringType
@Entity
@Table(name = "atable")
@TypeDef(name = "json", typeClass = JsonType.class)
public class Atable {
@Type(type = "json")
@Column(name = "acolumn", columnDefinition = "json")
private JsonNode acolumn;
}
Vậy là xong!