如何使用JOOQ在PostgreSQL中插入带有JSON列的可更新记录?

Chr*_*rts 9 java sql postgresql jooq postgresql-9.3

我跟着答案是否有可能写一个数据类型转换器来处理postgres JSON列? 实现nodeObject转换器.

然后我尝试使用可更新记录来插入记录,我得到了"org.jooq.exception.SQLDialectNotSupportedException:在方言POSTGRES中不支持类型类org.postgresql.util.PGobject"异常.

我怎么解决这个问题?

以下是我的代码:

TableRecord r = create.newRecord(TABLE);
ObjectNode node = JsonNodeFactory.instance.objectNode();
r.setValue(TABLE.JSON_FIELD, node, new JsonObjectConverter());
r.store();
Run Code Online (Sandbox Code Playgroud)

Luk*_*der 8

从jOOQ 3.5开始,您可以将自己的自定义数据类型绑定注册到代码生成器,如下所示:

http://www.jooq.org/doc/latest/manual/code-generation/custom-data-type-bindings

与a不同Converter,a Binding指示如何在jOOQ内的JDBC级别处理数据类型,而不知道您的实现.即,您不仅将定义如何在类型<T><U>类型之间进行转换(T=数据库类型,U=用户类型),而且还可以定义这些类型的方式:

  • 呈现为SQL
  • 绑定到PreparedStatements
  • 绑定到SQLOutput
  • 在CallableStatements中注册为OUT参数
  • 从ResultSet获取
  • 从SQLInput获取
  • 从CallableStatements获取为OUT参数

这里给出了Binding与杰克逊一起使用JsonNode类型的例子:

public class PostgresJSONJacksonJsonNodeBinding 
implements Binding<Object, JsonNode> {

    @Override
    public Converter<Object, JsonNode> converter() {
        return new PostgresJSONJacksonJsonNodeConverter();
    }

    @Override
    public void sql(BindingSQLContext<JsonNode> ctx) throws SQLException {

        // This ::json cast is explicitly needed by PostgreSQL:
        ctx.render().visit(DSL.val(ctx.convert(converter()).value())).sql("::json");
    }

    @Override
    public void register(BindingRegisterContext<JsonNode> ctx) throws SQLException {
        ctx.statement().registerOutParameter(ctx.index(), Types.VARCHAR);
    }

    @Override
    public void set(BindingSetStatementContext<JsonNode> ctx) throws SQLException {
        ctx.statement().setString(
            ctx.index(), 
            Objects.toString(ctx.convert(converter()).value()));
    }

    @Override
    public void get(BindingGetResultSetContext<JsonNode> ctx) throws SQLException {
        ctx.convert(converter()).value(ctx.resultSet().getString(ctx.index()));
    }

    @Override
    public void get(BindingGetStatementContext<JsonNode> ctx) throws SQLException {
        ctx.convert(converter()).value(ctx.statement().getString(ctx.index()));
    }

    // The below methods aren't needed in PostgreSQL:

    @Override
    public void set(BindingSetSQLOutputContext<JsonNode> ctx) throws SQLException {
        throw new SQLFeatureNotSupportedException();
    }

    @Override
    public void get(BindingGetSQLInputContext<JsonNode> ctx) throws SQLException {
        throw new SQLFeatureNotSupportedException();
    }
}
Run Code Online (Sandbox Code Playgroud)

Converter这是上面使用可以在这里看到:

public class PostgresJSONJacksonJsonNodeConverter 
implements Converter<Object, JsonNode> {
    @Override
    public JsonNode from(Object t) {
        try {
            return t == null 
              ? NullNode.instance 
              : new ObjectMapper().readTree(t + "");
        }
        catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public Object to(JsonNode u) {
        try {
            return u == null || u.equals(NullNode.instance) 
              ? null 
              : new ObjectMapper().writeValueAsString(u);
        }
        catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public Class<Object> fromType() {
        return Object.class;
    }

    @Override
    public Class<JsonNode> toType() {
        return JsonNode.class;
    }
}
Run Code Online (Sandbox Code Playgroud)

您现在可以通过代码生成器配置注册以上绑定:

<customType>
    <name>com.example.PostgresJSONJacksonJsonNodeBinding</name>
    <type>com.fasterxml.jackson.databind.JsonNode</type>
    <binding>com.example.PostgresJSONJacksonJsonNodeBinding</binding>
</customType>

<forcedType>
    <name>com.example.PostgresJSONJacksonJsonNodeBinding</name>
    <expression>my_schema\.table\.json_field</expression>
</forcedType>
Run Code Online (Sandbox Code Playgroud)