What is the best practice for working with JSON column within Java code? Specifically I am interested in being able to save & query JSON columns in a MySQL DB using hibernate..
@Entity
public class MyEntity {
private String myField; // this field is a json column
public MyEntity() {
}
}