Postgresql Jsonb Java Hibernate 6 JdbcTypeCode
To persist I use Hibernate 6 and use on the entity: @JdbcTypeCode(SqlTypes.JSON) private String value; When you save to the database, save wrapped in quotes and inside the json escape the quotes: "{"name":"pepito", "lastname":"perez"}" when I use the query to…