如果使用annonation,要注意如果字段是数据库中的关键字,则要为字段加上“`”号。
如:
@Column(name = "`describe`", nullable = false) public String getDescribe() { return this.describe; }
否则会出现错误,如:
org.springframework.dao.InvalidDataAccessResourceUsageException: could not insert:
2022-01-08 20:27:55
如果使用annonation,要注意如果字段是数据库中的关键字,则要为字段加上“`”号。
如:
@Column(name = "`describe`", nullable = false) public String getDescribe() { return this.describe; }
否则会出现错误,如:
org.springframework.dao.InvalidDataAccessResourceUsageException: could not insert: