Как записать строковую переменную в PostgreSQL столбец JSONB без сгенерированных классов, используя jOOQ 3.10?
dsl.insertInto(table, Arrays.asList(
DSL.field("configuration")
))
.values(
data.getConfiguration()
).execute();
У меня есть строка json в data.getConfiguration (), но я получаю исключение
org.postgresql.util.PSQLException: ERROR: column "configuration" is of type jsonb but expression is of type character varying