IDとJSONオブジェクトを格納するフィールドの2つの列を持つ特定のテーブルが必要です。そして、SpringDataJPAを使用しています。
私はこの行で何かを考えていますが、よくわかりません:
@Entity
@Table(name = "some_table")
public class SomeTable {
@Id
@Column(name = "id", unique = true)
@GenericGenerator(name = "uuid", strategy = "uuid2")
@GeneratedValue(generator = "uuid")
private UUID id;
// getters and setters for id here..
// here to be the field for storing JSON objects and it's getters and setters
}