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.
我知道在 sql(oracle) 中我们可以使用“reruning into”,但是在使用 em.create() 时是否可以使用 JPA 自动执行某些操作。
试试 em.merge(),它会返回你刚刚持久化的附加实例。您可能需要 em.flush() 才能看到生成的主键。