hibernate + mysql + maven + tomcat10 中遇到的问题汇总 column specified twice hibernate

问题1:控制台 column specified twice hibernate
解决方法 :添加:JoinColum 添加属性 insertable = false
//多对一关联关系
@ManyToOne(fetch =FetchType.EAGER,cascade = CascadeType.REMOVE,targetEntity = ProductcategoryEntity.class)
@JoinColumn(name = "GNO",insertable = false) //GNO为当前表中外键字段名
private ProductcategoryEntity department = null;
//一对多的关联关系
@OneToMany(mappedBy = "department", cascade = CascadeType.REMOVE)
private Set products= null;

问题2: tomcat 10中api发生改变 会出现不兼容的情况
csdn上

hibernate + mysql + maven + tomcat10 中遇到的问题汇总 column specified twice hibernate最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/24571.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>