gpt4 book ai didi

java - HQL错误 "Could not resolve property"

转载 作者:行者123 更新时间:2023-12-01 09:41:42 24 4
gpt4 key购买 nike

使用 HQL 从我的 Oracle 数据库中提取实体时遇到一些问题。

这是我的 DAO 中的代码

public ClientProject getClientProject(Client client, Product product) {
ClientProject clientProject = null;
Session session = factory.openSession();
String name = client.getClientName();
String id = "" + product.getProductId();
String hql= "from ClientProject as cp where cp.client.name = :name and cp.product.id = :id";
try {
session.beginTransaction();
Query query = session.createQuery(hql);
query.setParameter("name", "%"+name+"%");
query.setParameter("id", "%"+id+"%");

} finally {
session.close();
}

return clientProject;
}

这是 ClientProject 的代码

@Entity
@Table (name="client_project")
@SequenceGenerator(name="seq_client_project",sequenceName="****.SEQ_CLIENT_PROJECT", allocationSize=1, initialValue=1)
public class ClientProject {

//Fields
@Id
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="seq_client_project")
@Column(name="CLIENT_PROJECT_ID")
private int id;
@ManyToOne(fetch=FetchType.EAGER)
@JoinColumn(name="client_id")
private Client client;
@OneToOne(cascade=CascadeType.ALL)
@JoinColumn(name="product_id")
private Product product;
@OneToMany(mappedBy="clientProject")
private Set<Mod> clientProjectMod;
@Column(name="PROJECT_CODE")
private String projectCode;

这是 Client 类的代码

@Entity
@Table (name="client")
@SequenceGenerator(name="seq_client",sequenceName="****.SEQ_CLIENT", allocationSize=1, initialValue=1)
public class Client {

//Fields
@Id
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="seq_client")
@Column(name="CLIENT_ID")
private int id;
@Column(name="CLIENT_NAME")
private String clientName;
@Column(name="CLIENT_CODE")
private String clientCode;
@OneToMany(mappedBy="client")
private Set<ClientProject> clientProjects;

这是我收到的错误消息..

WARNING: #{newBean.handleGenerateForm}: org.hibernate.QueryException: could not resolve property: name of: com.manh.entries.Client [from com.manh.entries.ClientProject as cp where cp.client.name = :name and cp.product.id = :id] javax.faces.FacesException: #{newBean.handleGenerateForm}: org.hibernate.QueryException: could not resolve property: name of: com.manh.entries.Client [from com.manh.entries.ClientProject as cp where cp.client.name = :name and cp.product.id = :id]

有什么想法吗?我猜我只是搞砸了 HQL 查询的一部分......

提前致谢!

最佳答案

属性名称是clientName而不是name

String hql= "from ClientProject as cp where cp.client.clientName = :name and cp.product.id = :id";

关于java - HQL错误 "Could not resolve property",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38400637/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com