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.
DBとしてmysqlを使用してHibernate3.0を使用しています。プロジェクトのシナリオの1つで、デフォルト値のレコードを挿入する必要があります。挿入が成功した後、挿入されたレコードを取得しauto_generated idて、次のクエリに使用できるようにする必要がありますか?
auto_generated id
同じテーブルに複数のレコードが挿入される場合があります。では、AUTO_GENERATED IDを取得する安全な方法はありますか?
多分このようなもの?
session.persist(myEntity); myEntity.getId();