Hibernate createNativeQuery返回重复的行



我有两个数据库表CustomerItems,具有1->多关系。为了从数据库中获取数据,我使用以下查询。

从testdb.customer INNER JOIN items ON items.customer_id=customer.id 中选择customer.id,customer.name,items.itemName,items.itemPrice

我有一个实体类客户

@Entity    
public class Customer{
@Id
private int id;
@Column
private String name;
@Column
private String itemName;
@Column
private int itemPrice;
public Customer() {}
//Getter and setter are here
.......
}

在服务类中,我有以下代码。

@GET @Path("/getCustomerInfo")
@Produces(MediaType.APPLICATION_JSON)
public List getCustomerInfo() {
CustomerDao dao = new CustomerDao();
return dao.getBuildingsCustomerInfo();
}

在我的DAO类中,我有以下代码

public List<Customer> getCustomerInfo(){
Session session = SessionUtil.getSession();
String queryString = "the above mentioned query";
List<Customer> customerInfo = session.createNativeQuery(queryString, Customer.class) ;
session.close();
return customerInfo;
}

我从服务得到以下JSON响应

[id:1, name:"Alfred", itemName:"jeans", itemprice:10],[id:1, name:"Alfred", itemName:"jeans", itemprice:10],[id:2, name:"James", itemName:"watch", itemPrice:20 ],[id:2, name:"James", itemName:"watch", itemPrice:20 ], [id:2, name:"James", itemName:"watch", itemPrice:20 ]

结果的数量是5,这是正确的,但第二个结果是第一个的副本,第四个和第五个是第三个的副本。在第2、第4和第5个结果中,itemName和itemPrice应该不同。

如果我使用createSQLQuery(queryString);而不是createNativeQuery(queryString, Customer.class);,我会得到正确的结果,但没有实体属性名称。

[1, "Alfred", "jeans", 10],[1, "Alfred", "shirt", 15],[2, "James", "watch", 20], [2, "James", "coffee", 25], [2, "James", "drinks", 30]

我看过很多文章,但找不到解决方案。我必须使用createNativeQuery((而不是createSQLQuery((,因为我需要映射实体类属性。如果我做错了什么,请告诉我。

您的数据结构在Java端是错误的,与数据库关系不对应。在你描述的关系中,你需要有一个项目列表:

@Entity    
public class Customer implements Serializable {
// ... the fields you have so far
// assuming the parent field on the other side is called customer
// you may also want to set the cascade and orphanRemoval properties of the annotation
@OneToMany(mappedBy = "customer")
@JsonManagedReference // assuming you're using Jackson databind JSON
private List<Item> items;
}

在项目方面:

@Entity
public class Item implements Serializable {
@Id
private int id;
@JsonBackReference
@ManyToOne
@JoinColumn(name = "customer_Id")
private Customer customer;
}

然后,如果您真的是以这种方式构建JSON数据,那么您需要第三个Entity类来用作ResultSetMapping。

@Entity
@SqlResultSetMapping(
name = "CustomerItem",
entities = @EntityResult(entityClass = CustomerItem.class)
)
@NamedNativeQueries({
@NamedNativeQuery(
name = "CustomerItem.getAll",
resultSetMapping = "CustomerItem"
query = "select customer.id as cid, items.id as iid, customer.name,"
+ " items.itemName, items.itemPrice from testdb.customer INNER JOIN"
+ " items ON items.customer_Id = customer.id"
)
})
public class CustomerItem implements Serializable {
@Id
private int cid;
@Id
private int iid;
@Column
private String name;
@Column
private String itemName;
@Column
private int itemPrice;
... getters and setters
}

然后,您可以在命名变体中使用本机查询,它应该提供一些轻微的优化。

List<CustomerItem> lst = em.createNamedQuery("CustomerItem.getAll", CustomerItem.class)
.getResultList();

@SqlResultSetMapping的使用是为了不监视返回的实体的更改,但您仍然可以使用定义的实体来获得结果。我相信,根据JPA规范,它也应该在没有它的情况下工作,但在Hibernate中则不然。可能是一个bug,或者是一个计划中但未实现的功能,或者我可能只是误解了JPA的用法,但这种解决方法确实适用于Hibernate 5+。

不确定重复背后的确切原因,但SELECT DISTINCT将解决您的问题,因为它只需要不同的记录。

参考jpa 中使用distinct

我使用@SqlResultSetMapping 解决了这个问题

相关内容

  • 没有找到相关文章

最新更新