作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有 HQL,我试图在其中获取没有分类的工件(当 Activity 为 0 时)
artifacts = Artifact.findAll("FROM Artifact WHERE id NOT IN ( SELECT artifact_id FROM Classification WHERE active = 1) AND document_id = :docid",[docid:document.id], [max:limit, offset:startIndex]);
每次运行都会出错
java.lang.IllegalStateException: No data type for node: org.hibernate.hql.internal.ast.tree.IdentNode
\-[IDENT] IdentNode: 'artifact_id' {originalText=artifact_id}
分类定义:
class Classification {
public static final String USER_DEFAULT = "USER"
public static final String USER_SYSTEM = "SYSTEM"
TaxonomyNode node
String artifactId
Boolean active
String createdBy
String updatedBy
Date dateCreated
Date lastUpdated
static constraints = {
node nullable:false, blank:false
artifactId nullable:false, blank:false, unique: ['node']
active nullable: false, blank: false
createdBy nullable:false, blank:false
updatedBy nullable:false, blank:false
}
static mapping = {
id generator:'sequence', params:[sequence:'classification_seq']
artifactId index: 'classify_by_artifact_node'
node index: 'classify_by_artifact_node'
active defaultValue: "1"
}
}
最佳答案
SQL 查询使用列名,而 HQL 查询使用类属性。您正在从分类中选择 artifact_id,但分类类没有名为“artifact_id”的属性。要修复它,请使用 HQL 中的类属性。
SELECT artifactId FROM Classification
关于java - 节点 : org. hibernate.hql.internal.ast.tree.IdentNode HQL 没有数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26471534/
我在使用 JPQL 执行简单的更新查询时遇到了 ClassCastException。 下面是异常跟踪: Caused by: java.lang.ClassCastException: org.hi
我的 hsql 出错了 No data type for node: org.hibernate.hql.ast.tree.IdentNode +-[IDENT] IdentNode: 'Order
我有 HQL,我试图在其中获取没有分类的工件(当 Activity 为 0 时) artifacts = Artifact.findAll("FROM Artifact WHERE id NOT IN
我是一名优秀的程序员,十分优秀!