web-dev-qa-db-ja.com

H2でJSON列を解決する方法

私はアプリケーションMySQL 5.7で使用し、JSON列を持っています。 H2データベースがテーブルを作成できないため、統合テストを実行しようとしても機能しません。これはエラーです:

2016-09-21 16:35:29.729 ERROR 10981 --- [           main] org.hibernate.tool.hbm2ddl.SchemaExport  : HHH000389: Unsuccessful: create table payment_transaction (id bigint generated by default as identity, creation_date timestamp not null, payload json, period integer, public_id varchar(255) not null, state varchar(255) not null, subscription_id_zuora varchar(255), type varchar(255) not null, user_id bigint not null, primary key (id))
2016-09-21 16:35:29.730 ERROR 10981 --- [           main] org.hibernate.tool.hbm2ddl.SchemaExport  : Unknown data type: "JSON"; SQL statement:

これはエンティティクラスです。

@Table(name = "payment_transaction")
public class PaymentTransaction extends DomainObject implements Serializable {

    @Convert(converter = JpaPayloadConverter.class)
    @Column(name = "payload", insertable = true, updatable = true, nullable = true, columnDefinition = "json")
    private Payload payload;

    public Payload getPayload() {
        return payload;
    }

    public void setPayload(Payload payload) {
        this.payload = payload;
    }
}

そして、サブクラス:

public class Payload implements Serializable {

    private Long userId;
    private SubscriptionType type;
    private String paymentId;
    private List<String> ratePlanId;
    private Integer period;

    public Long getUserId() {
        return userId;
    }

    public void setUserId(Long userId) {
        this.userId = userId;
    }

    public SubscriptionType getType() {
        return type;
    }

    public void setType(SubscriptionType type) {
        this.type = type;
    }

    public String getPaymentId() {
        return paymentId;
    }

    public void setPaymentId(String paymentId) {
        this.paymentId = paymentId;
    }

    public List<String> getRatePlanId() {
        return ratePlanId;
    }

    public void setRatePlanId(List<String> ratePlanId) {
        this.ratePlanId = ratePlanId;
    }

    public Integer getPeriod() {
        return period;
    }

    public void setPeriod(Integer period) {
        this.period = period;
    }

}

データベースに挿入するためのこのコンバーター:

public class JpaPayloadConverter implements AttributeConverter<Payload, String> {

    // ObjectMapper is thread safe
    private final static ObjectMapper objectMapper = new ObjectMapper();

    private Logger log = LoggerFactory.getLogger(getClass());

    @Override
    public String convertToDatabaseColumn(Payload attribute) {
        String jsonString = "";
        try {
            log.debug("Start convertToDatabaseColumn");

            // convert list of POJO to json
            jsonString = objectMapper.writeValueAsString(attribute);
            log.debug("convertToDatabaseColumn" + jsonString);

        } catch (JsonProcessingException ex) {
            log.error(ex.getMessage());
        }
        return jsonString;
    }

    @Override
    public Payload convertToEntityAttribute(String dbData) {

        Payload payload = new Payload();
        try {
            log.debug("Start convertToEntityAttribute");

            // convert json to list of POJO
            payload = objectMapper.readValue(dbData, Payload.class);
            log.debug("JsonDocumentsConverter.convertToDatabaseColumn" + payload);

        } catch (IOException ex) {
            log.error(ex.getMessage());
        }
        return payload;

    }
}
21
earandes

H2にはJSONデータ型がありません。

JSONは基本的に非常に長い文字列である可能性があるため、ほとんどのデータベースで利用可能なCLOBを使用できます。

行レベルでJSONタイプが必要なのは、行レベルで動作するSQL関数が必要な場合、およびデータベースがそのJSON関数がCLOBではなくJSONタイプで動作することを要求する場合のみです。

7
toolforger

JSONB列タイプ-JSONタイプのバイナリバージョンで、TEXTにマップされないこの問題に遭遇しました。

将来の参照のために、次のようにCREATE DOMAINを使用してH2でカスタムタイプを定義できます。

CREATE domain IF NOT EXISTS jsonb AS other;

これは私にとってはうまくいくようで、エンティティに対してコードを正常にテストすることができました。

ソース: https://objectpartners.com/2015/05/26/grails-postgresql-9-4-and-jsonb/

19
n00dle

H2でTEXTタイプを使用して問題を解決しました。テスト用にH2でスキーマを作成し、JSONタイプをTEXTに置き換えるには、個別のデータベーススクリプトを作成する必要があります。

クエリでJson関数を使用する場合、H2でそれらをテストすることはできないため、これは依然として問題です。

3
Olivier Garand

H2にはJSONデータ型がありません。

MySQLでは、JSON型はLONG​​TEXTデータ型の単なるエイリアスであるため、列の実際のデータ型はLONG​​TEXTになります。

0
Alex