Caused by: org.hibernate.MappingException: Repeated column in mapping for entity. column: creator_id

问题:Caused by: org.hibernate.MappingException: Repeated column in mapping for entity. column: creator_id (should be mapped with insert=“false” update=“false”)

原码

Caused by: org.hibernate.MappingException: Repeated column in mapping for entity. column: creator_id

修改
方法一:加了一行代码 @Column(insertable=false,updatable=false)

Caused by: org.hibernate.MappingException: Repeated column in mapping for entity. column: creator_id

方法二:调整位置

Caused by: org.hibernate.MappingException: Repeated column in mapping for entity. column: creator_id