我从Hibernate代码中收到以下错误:
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown column 'bulletin0_.bulletin_date' in 'field list'
我的表中没有这样的bulletin_date
列,我的模型类中也没有这样的名称。它刚刚被称为date
。以下是我收到错误的行。
Query query = session.createQuery("from Bulletin where approved = true");
这是我的模特课(我不在乎吸气剂和制定者):
public class Bulletin {
@Id
@Column(name="id")
@GeneratedValue
private int id;
@Column(name="date")
private String date;
@Column(name="name")
private String name;
@Column(name="subject")
private String subject;
@Column(name="note")
private String note;
@Column(name="approved")
private boolean approved;
}
这是我的表定义。
+----------+---------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+---------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| date | varchar(10) | YES | | NULL | |
| name | varchar(30) | YES | | NULL | |
| subject | varchar(50) | YES | | NULL | |
| note | varchar(2500) | YES | | NULL | |
| approved | tinyint(1) | YES | | NULL | |
+----------+---------------+------+-----+---------+----------------+
答案 0 :(得分:3)
我的Bulletin.hbm.xml
文件中的列名错误。当我纠正它时,问题就解决了。