org.hibernate.MappingException: Repeatedcolumn in mapping for entity: com.pojo.Employee column: dept_id (should bemapped with insert="false" update="false")
实体类中写两个属性
private Integer deptId;
private Dept dept;
这两个属性映射的是数据库中的同一列,在插入和修改的时候就报错了。
出现这种错误的原因,是在映射文件中重复映射了表中的同一个字段:
把重复的删掉就好了。或者根据提示,在属性上添加insert="false" update="false"