英文:
Map string properties to JSONB
问题
我一直在尝试使用JPA将我的字符串属性映射到PostgreSQL的JSONB列。我多次阅读了Vlad Mihalcea的完美文章,也看到了相关的问题和类似的问题。但是每当我尝试向表中插入数据时,我仍然会遇到这个异常org.postgresql.util.PSQLException: ERROR: column "json_property" is of type jsonb but expression is of type character varying
。
更糟糕的是,所有这些类似问题中的建议在我改变了实体类并使其继承超类之后都变得无效了。现在的情况是这样的:
1)如果在我的子类上使用@TypeDef
和@Type
,它可以正常工作;
2)但我想使用抽象层,并将我在上面看到的那些注解应用到我的基础实体类上,之后异常就会告诉我'你好!我又来了';
我的继承结构非常简单,如下所示:
基础实体类
@TypeDef(name = "jsonb", typeClass = JsonBinaryType.class)
@MappedSuperclass
public abstract class AbstractServiceEntity implements Serializable {
private Integer id;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
子实体类
@Entity
@Table(schema = "ref", name = "test_json_3")
@NoArgsConstructor
@AllArgsConstructor
@Getter
@Setter
public class TestJson extends AbstractServiceEntity {
@Type(type = "jsonb")
@Column(columnDefinition = "jsonb")
private String jsonProperty;
我的表
create table ref.test_json_3
(
id serial primary key,
json_property jsonb
)
更新
我成功地使用了JPA原生查询插入了记录,但我不得不将查询解包到Hibernate查询中。不确定这是否是将数据插入数据库的最方便的方式。我的问题仍然存在,我仍然需要您的帮助。下面是使用原生查询的示例。
带有结果的代码片段
@Repository
public class JpaTestRepository {
@PersistenceContext
private EntityManager entityManager;
@Transactional
public void insert(TestJson testJson) {
entityManager.createNativeQuery("INSERT INTO test_json_3 (json_property) VALUES (?)")
.unwrap(Query.class)
.setParameter(1, testJson.getJsonProperty(), JsonBinaryType.INSTANCE)
.executeUpdate();
}
英文:
I've been trying map my string properties to Postgresql's JSONB using JPA. I did read perfect article by Vlad Mihalcea many times and also seen relative questions and problems with similar stuff. BUT I still have this exception org.postgresql.util.PSQLException: ERROR: column "json_property" is of type jsonb but expression is of type character varying
every time when I'm trying insert something into my table.
And what even worse is - all these advices in similar questions were useful until I changed my entity class and made him inherits super class. And now situation is like this:
- If
@TypeDef
and@Type
on my child class and it works great - But I want use abstraction layer and set annotations, which I noticed above, to my base entity class and after that exception says me 'Hello! It's me again'
My hierarchy is pretty simple and here it is:
Base entity
@TypeDef(name = "jsonb", typeClass = JsonBinaryType.class)
@MappedSuperclass
public abstract class AbstractServiceEntity implements Serializable {
private Integer id;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
Child entity
@Entity
@Table(schema = "ref", name = "test_json_3")
@NoArgsConstructor
@AllArgsConstructor
@Getter
@Setter
public class TestJson extends AbstractServiceEntity {
@Type(type = "jsonb")
@Column(columnDefinition = "jsonb")
private String jsonProperty;
My table
create table ref.test_json_3
(
id serial primary key,
json_property jsonb
)
UPD
I've succesfully inserted record with JPA native query, but I had to unwrap my query into hibernate query. Not sure that it's the most convinient way to manage inserting data into DB. The my question is actual, I still need your help) Example with native query below.
Code snippent with result
@Repository
public class JpaTestRepository {
@PersistenceContext
private EntityManager entityManager;
@Transactional
public void insert(TestJson testJson) {
entityManager.createNativeQuery("INSERT INTO test_json_3 (json_property) VALUES (?)")
.unwrap(Query.class)
.setParameter(1, testJson.getJsonProperty(), JsonBinaryType.INSTANCE)
.executeUpdate();
}
答案1
得分: 2
我终于找到了解决我的问题的方法。答案是 - 只需在 getter 方法中使用 `@Column(columnDefinition = "jsonb")` 和 `@Type(type = "jsonb")`,而不是在类属性中使用。
**实体定义**
@Entity
@Table(schema = "ref", name = "test_json_3")
@NoArgsConstructor
@AllArgsConstructor
@Setter
public class TestJson extends AbstractServiceEntity {
private String jsonProperty;
@Type(type = "jsonb")
@Column(columnDefinition = "jsonb")
public String getJsonProperty() {
return jsonProperty;
}
英文:
Finally I found solution for my problem. Answer is - just use your @Column(columnDefinition = "jsonb")
and @Type(type = "jsonb"
via getters but not class properties.
entity definition
@Entity
@Table(schema = "ref", name = "test_json_3")
@NoArgsConstructor
@AllArgsConstructor
@Setter
public class TestJson extends AbstractServiceEntity {
private String jsonProperty;
@Type(type = "jsonb")
@Column(columnDefinition = "jsonb")
public String getJsonProperty() {
return jsonProperty;
}
答案2
得分: 1
@ColumnTransformer(write = "?::jsonb")
private String jsonProperty;
英文:
Alternate solution for mapping String to Jsonb type. Just add the following annotation on your string.
@ColumnTransformer(write = "?::jsonb")
private String jsonProperty;
答案3
得分: 0
你可以尝试在TestJson类下添加@TypeDefs注解:
@TypeDefs({
@TypeDef(name = "jsonb", typeClass = JsonBinaryType.class)
})
public class TestJson extends AbstractServiceEntity {
英文:
You can try to add @TypeDefs under class TestJson:
@TypeDefs({
@TypeDef(name = "jsonb", typeClass = JsonBinaryType.class)
})
public class TestJson extends AbstractServiceEntity {
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论