Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想坚持使用特定的 id-String tdsSubmissionId; 我的班级我的班级;this.hibernateTemplate.save(myclass, tdsSubmissionId);
使用此签名 - 保存(对象实体,可序列化 id)
但我收到错误 - 方法 save(String, Object) 不适用于参数 (Myclass, String)
似乎它的自动输入错误。我该如何解决?谢谢。
没有这样的方法save(entity, id),这就是错误告诉你的。
save(entity, id)
您的实体必须已经设置了 ID,您可以将其传递给hibernateTemplate.save(entity).
hibernateTemplate.save(entity)