gpt4 book ai didi

java - org.hibernate.exception.SQLGrammarException : could not execute query

转载 作者:行者123 更新时间:2023-11-29 08:16:53 26 4
gpt4 key购买 nike

我用的是游戏框架!!但是当我运行我的项目时,它给了我这个

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;
}


}

最佳答案

您完全缺少类属性的映射注释。

P.S. 请尽量关注Java naming conventions

关于java - org.hibernate.exception.SQLGrammarException : could not execute query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4083949/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com