Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JAVA jpa を使い始めたばかりです。これまでのところ、動作する永続メソッドのみを試しました。次のクエリの実行に問題があります
Customer = Customer(manager.createQuery("Select c FROM Customer c where c.LastName=\"Lname\""));
ただし、上記の場合、私の Customer クラスは認識されていません。私はこれを正しくやっていますか?
クエリオブジェクトは型キャストできないため、使用して問題を解決しました
query = em.createQuery( "SELECT c FROM Country c WHERE c.name = 'Canada'"); Country c = (Country)query.getSingleResult();