錯誤信息
A different object with the same identifier value was already associated with the session
解決方案
實體類中主鍵沒有標明為自增皿渗,需要加入在 @Id
標簽上加入以下標簽
@GeneratedValue(strategy=GenerationType.IDENTITY) // 主鍵自增
A different object with the same identifier value was already associated with the session
實體類中主鍵沒有標明為自增皿渗,需要加入在 @Id
標簽上加入以下標簽
@GeneratedValue(strategy=GenerationType.IDENTITY) // 主鍵自增