如何使用JPA将JSONB放入Postgres数据库

时间:2017-05-15 09:16:16

标签: java json postgresql jpa

我正在尝试使用Jersey,Gson,JPA构建一个REST应用程序,我想将一个JSON对象放到Postgres的JSON or JSONB数据库字段中。

我尝试过这样的事情:How to use Postgres JSONB datatype with JPA?但是我的表看到'VARCHAR'类型而不是'JSONB'。

我的实体:

@Entity
@Table(name = "votes")

public class Votes {

@Id
@GeneratedValue
private int id;
private int idSocialChoice;

@Convert(converter=JsonConverter.class)
private JsonObject vote;

public Votes() {
}

public JsonObject getVote() {
    return vote;
}

public void setVote(JsonObject vote) {
    this.vote = vote;
}

public int getIdSocialChoice() {
    return idSocialChoice;
}

public void setIdSocialChoice(int idSocialChoice) {
    this.idSocialChoice = idSocialChoice;
}

我如何插入我的实体:

Votes votes0 = new Votes();
votes0.setIdSocialChoice(3);

JsonObject object = Json.createObjectBuilder().build();
votes0.setVote(object);

List<Votes> listvotes = new ArrayList<Votes>();
listvotes.add(votes0);

ModelEntities.insertVotes(listvotes);

方法insertVotes:

public static void insertVotes(List<Votes> animalList) {

    CrudServiceBean crudServiceBean = new CrudServiceBean(CrudServiceBean.PU_DB);
    crudServiceBean.newTransaction();

    for(Votes votes : animalList)
        crudServiceBean.create(votes);

    crudServiceBean.commit();

    crudServiceBean.closeTransaction();

}

创建crudServiceBean.create的方法:

public  <T> T create(T t) {
    this.em.persist(t);
    this.em.flush();
    this.em.refresh(t);
    return t;
}

我的JPA提供程序创建了这样的架构(createDDL_ddlGeneration.sql):

CREATE TABLE votes (ID INTEGER NOT NULL, IDSOCIALCHOICE INTEGER, VOTE VARCHAR(255), PRIMARY KEY (ID))

我也会避免使用Hibernate。

谢谢。

1 个答案:

答案 0 :(得分:5)

我终于找到了问题。我忘记了我的属性上的这一行:

@Column (nullable = true, columnDefinition = "jsonb")