9

JPA 2.0 から Criteria API を使用してクエリを作成しようとしていますが、うまくいきません。

問題は、「間」条件メソッドにあります。どうすればよいかを知るためにいくつかのドキュメントを読みましたが、JPAを発見しているので、なぜそれが機能しないのかわかりません。

まず、「Transaction_」と書いたときに現れるはずの「creationDate」が見えません。

実行時にメタモデルが生成されると読んだので、おそらく正常だと思ったので、「Foo_.value」の代わりに「Foo_.getDeclaredSingularAttribute("value")」を使用しようとしましたが、それでもまったく機能しません。

これが私のコードです:

public List<Transaction> getTransactions(Date startDate, Date endDate) {
    EntityManager em = getEntityManager();
    try {
        CriteriaBuilder cb = em.getCriteriaBuilder();
        CriteriaQuery<Transaction> cq = cb.createQuery(Transaction.class);
        Metamodel m = em.getMetamodel();
        EntityType<Transaction> Transaction_ = m.entity(Transaction.class);
        Root<Transaction> transaction = cq.from(Transaction.class);

        // Error here. cannot find symbol. symbol: variable creationDate
        cq.where(cb.between(transaction.get(Transaction_.creationDate), startDate, endDate));

        // I also tried this:
        // cq.where(cb.between(Transaction_.getDeclaredSingularAttribute("creationDate"), startDate, endDate));

        List<Transaction> result = em.createQuery(cq).getResultList();
        return result;
    } finally {
        em.close();
    }
}

誰かがこれを理解するのを手伝ってくれますか? ありがとう。

EDIT:ここにトランザクションソースがあります(データベースからNetbeansによって自動的に生成されたため、ほとんど何もありません)

package projetjava.db;

import java.io.Serializable;
import java.util.Date;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;

@Entity
@Table(name = "transaction")
@NamedQueries({
    @NamedQuery(name = "Transaction.findAll", query = "SELECT t FROM Transaction t"),
    @NamedQuery(name = "Transaction.findById", query = "SELECT t FROM Transaction t WHERE t.id = :id"),
    @NamedQuery(name = "Transaction.findByIDAccount", query = "SELECT t FROM Transaction t WHERE t.iDAccount = :iDAccount"),
    @NamedQuery(name = "Transaction.findByDescription", query = "SELECT t FROM Transaction t WHERE t.description = :description"),
    @NamedQuery(name = "Transaction.findByCreationDate", query = "SELECT t FROM Transaction t WHERE t.creationDate = :creationDate"),
    @NamedQuery(name = "Transaction.findByAmount", query = "SELECT t FROM Transaction t WHERE t.amount = :amount")})
public class Transaction implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Basic(optional = false)
    @Column(name = "ID")
    private Integer id;
    @Basic(optional = false)
    @Column(name = "IDAccount")
    private int iDAccount;
    @Basic(optional = false)
    @Column(name = "Description")
    private String description;
    @Basic(optional = false)
    @Column(name = "CreationDate")
    @Temporal(TemporalType.DATE)
    private Date creationDate;
    @Basic(optional = false)
    @Column(name = "Amount")
    private double amount;

    public Transaction() {
    }

    public Transaction(Integer id) {
        this.id = id;
    }

    public Transaction(Integer id, int iDAccount, String description, Date creationDate, double amount) {
        this.id = id;
        this.iDAccount = iDAccount;
        this.description = description;
        this.creationDate = creationDate;
        this.amount = amount;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public int getIDAccount() {
        return iDAccount;
    }

    public void setIDAccount(int iDAccount) {
        this.iDAccount = iDAccount;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public Date getCreationDate() {
        return creationDate;
    }

    public void setCreationDate(Date creationDate) {
        this.creationDate = creationDate;
    }

    public double getAmount() {
        return amount;
    }

    public void setAmount(double amount) {
        this.amount = amount;
    }

    @Override
    public int hashCode() {
        int hash = 0;
        hash += (id != null ? id.hashCode() : 0);
        return hash;
    }

    @Override
    public boolean equals(Object object) {
        // TODO: Warning - this method won't work in the case the id fields are not set
        if (!(object instanceof Transaction)) {
            return false;
        }
        Transaction other = (Transaction) object;
        if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
            return false;
        }
        return true;
    }

    @Override
    public String toString() {
        return "projetjava.db.Transaction[id=" + id + "]";
    }

}
4

3 に答える 3

7

実行時にメタモデルが生成されると読んだので、おそらく正常だと思いました(...)

メタモデル クラスは、注釈処理を使用してコンパイル時に生成されます。つまり、コンパイラ レベルで注釈処理を有効にする必要があります。Hibernate JPA 2 メタモデル ジェネレーターのドキュメントでは、Ant、Maven、および Eclipse や Idea などの IDE を使用してこれを行う方法について説明しています (このアプローチは他のプロバイダーに転用できます) 。残念ながら、この機能は現在 NetBeans ではサポートされていません。

したがって、前述のビルド ツールのいずれかを使用して構成するか、別の IDE に切り替えます。たとえば、Eclipse では、プロジェクトを右クリックし、 [ Java コンパイラ] > [注釈処理] に移動して有効にします。

代替テキスト

次に、プロバイダーの必要な JAR をFactory Pathに追加します (この手順については、JPA プロバイダーのドキュメントを参照してください) 。

于 2010-04-08T20:16:01.560 に答える
2

ここで紛らわしい部分があると思います q.where(cb.between(transaction.get(Transaction_.creationDate), startDate, endDate));

Transaction_この場合は、元の Transaction エンティティ クラスに対応する、静的にインスタンス化された正規のメタモデル クラスであることに注意してください。JPA ライブラリを使用Transaction_してクラスをコンパイルして、クラスを生成する必要があります。TransactionEclipse の便利なリンクが 1 つあります: http://wiki.eclipse.org/UserGuide/JPA/Using_the_Canonical_Model_Generator_%28ELUG%29

intellij IDEA の場合

http://blogs.jetbrains.com/idea/2009/11/userfriendly-annotation-processing-support-jpa-20-metamodel/

于 2010-04-08T20:07:23.513 に答える
-2

JPA での開始日と終了日のクエリ

public List<Student> findStudentByReports(String className, Date startDate, Date endDate) {
    System.out
    .println("call findStudentMethd******************with this pattern"
            + className
            + startDate
            + endDate
            + "*********************************************");

    return em
    .createQuery(
            "select attendence from Attendence attendence where lower(attendence.className) like '"
            + className + "' or attendence.admissionDate BETWEEN : startdate AND endDate " + "'")
            .setParameter("startDate", startDate, TemporalType.DATE)
            .setParameter("endDate", endDate, TemporalType.DATE)
            .getResultList();
}
于 2011-08-18T10:45:04.610 に答える