我正在使用JPA查詢OracleSQL數據庫。 不過,我得到的錯誤:EntityManager查詢無法解析屬性
Request processing failed; nested exception is java.lang.IllegalArgumentException: org.hibernate.QueryException: could not resolve property: CLIENT_ID of: com.fdmgroup.pojo.File [SELECT c FROM com.fdmgroup.pojo.File c WHERE c.CLIENT_ID = :clientId]
當我寫了下面的查詢
String sqlQuery = "SELECT c FROM XD_FILES c WHERE c.CLIENT_ID = :clientId";
TypedQuery<File> query = em.createQuery(sqlQuery, File.class);
query = query.setParameter("clientId", clientId);
ArrayList<File> clientFiles = (ArrayList<File>) query.getResultList();
文件中有此列
@ManyToOne(targetEntity = Client.class)
@JoinColumn(name = "CLIENT_ID")
private Client client;
我不清楚爲什麼,因爲它似乎有字段「客戶端」鏈接到「CLIEND_ID」。
什麼是列名? –
你的「sqlQuery」是SQL,但你使用JPQL的API! –