web-dev-qa-db-ja.com

ノードのデータ型がありません:org.hibernate.hql.internal.ast.tree.IdentNode HQL

分類のないアーティファクトを取得しようとしているHQLがあります(アクティブが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"
    }
}

あなたが私がやろうとしていることを正確に理解するために私が直面した以前の問題を参照することができます Quest 1 および Quest 2

34
krs8785

SQLクエリは列名を使用し、HQLクエリはクラスプロパティを使用します。 Classificationからartifact_idを選択していますが、Classificationクラスには「artifact_id」という名前のプロパティがありません。これを修正するには、HQLでクラスプロパティを使用します。

SELECT artifactId FROM Classification
66
Vimm