问题描述
Repeated column in mapping for entity: XXpojo column: xx (should be mapped with insert="false" update="false")
问题原因
这是由于同一个数据库列映射到多个成员变量上
解决方法
取消重复,或加上在注解配置上insert="false" update="false"
Repeated column in mapping for entity: XXpojo column: xx (should be mapped with insert="false" update="false")
这是由于同一个数据库列映射到多个成员变量上
取消重复,或加上在注解配置上insert="false" update="false"