hibernate报错could not insert

javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: could not insert: [com.ebs.core.source.model.SourceNCPItem]
	

项目以前保存功能是正常的,后来我新增了一个字段

	/**
	 * 说明(对应报告中备注)
	 */
	@Column(name = "explain")
	private String explain;

数据库也加上这个字段了 

然后保存死活不行了 一直报错 could not insert:

查询是可以的 

后来我把hibernate的SQL语句打印出来 才发现问题 

hibernate报错could not insert_第1张图片

这个字段居然是关键字。

字段修改为 

explains

 

完美解决。

希望给有相同问题的童鞋有帮助。

你可能感兴趣的:(work)