Hibernate
- Column 'parent_id' specified twice問題解決--insertable = false, updatable = false的使用 - shendeguang的專欄 - CSDN博客
- https://blog.csdn.net/shendeguang/article/details/72800888
- hibernate+mysql 插入時報錯 Column XXX specified twice-CSDN論壇
- https://bbs.csdn.net/topics/390749849
@ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "parentdepartid", insertable = false, updatable = false) public TSDepart getTSPDepart() { return this.TSPDepart; } @Column(name ="parentdepartid",nullable=true,length=50) public String getParentdepartid() { return parentdepartid; }
Mybatis
- Mysql拋出Column 'descriptions' specified twice異常解決方法 - yoodb - 素文宅博客
- https://blog.yoodb.com/yoodb/article/detail/1340
- Column 'sort' specified twice錯誤 - 天德社區 - 博客園
- https://www.cnblogs.com/itiande/p/9633939.html
檢查MyBatis生成的SQL