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.
我可以使用 JPA 生成新 Id(如@GeneratedValue(strategy = GenerationType.AUTO ) 或具有填充 Id 的新实体,而不将此实体持久保存到数据库吗?
JPA 的完整形式是 Java Persistence API。所以它用于持久性。
每当合并表对象时,它将始终保持不变,id 值将递增。
希望这就是你要找的...
据我所知,这是不可能的,除非您启动事务,将实体存储在那里,然后回滚事务;请记住,这将在 ID 编号上留下空白。