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.
如何在hibernate中使用插入和更新来改变避免更新类。
我们可以使用这两种类型。但是在第二种情况下,检索很容易。您可以简单地获取对象。但在第一种情况下,您需要将 id 传递给数据库以获取对象。
否则,您可以使用两种选项,一种用于插入,另一种用于检索。插入时使用
developerObj.setDevID(12);
并设置insertable = false and updatable = false
insertable = false and updatable = false
当您检索使用project.developer.devId
project.developer.devId