我使用播放框架!但是当我运行我的项目时,给我这个
org.hibernate.exception.SQLGrammarException:无法执行查询
谁能帮我 ?
这是我的模型:
package models;
import java.util.*;
import javax.persistence.*;
import play.db.jpa.*;
import play.db.jpa.Model;
@Entity
@Table(name="GxkAccount")
public class GxkAccount extends Model {
private String Account;
private String Psw;
public String getAccount() {
return Account;
}
public void setAccount(String account) {
Account = account;
}
public String getPsw() {
return Psw;
}
public void setPsw(String psw) {
Psw = psw;
}
public static List<GxkAccount> GetList()
{
List<GxkAccount> infoList=GxkAccount.findAll();
return infoList;
}
}
最佳答案
您完全缺少类属性的映射注释。
附言请尝试遵循Java naming conventions