在我的数据库(mysql)中,有一个这样的表:
Project table'structure
----------------------------------------------------------------
Field | Type | Null | Key | Default | Extra |
+-------------+--------------+------+-----+---------+-------+
| id | bigint(20) | NO | PRI | NULL | |
| create_time | date | YES | | NULL | |
我有一个这样的实体:
@Entity
@Table(name = "project")
public class Project{
Long id;
Date createTime;
}
每次启动服务器时,“create_time”列会自动更改为“createTime”,并清除所有数据,这很危险。也许我可以修改数据库的用户权限来停止休眠来执行此操作。问题是如何在休眠级别停止这种危险动作?