Hibernate / Hibernate interview questions
Difference between save and persist.
Save()
- Returns generated Id after saving. The return type is serializable.
- Saves the value to DB immediately and keeps track of the entity until the end of the session(I have tried to change the entity values outside of the transaction, it does not show any effect when session commits)
- Does not save the changes to the db outside of the transaction.
- Assigns the generated id to the entity you are persisting
- Session.save() for a detached object will create a new row in the table.
Persist()
- Does not returns generated Id after saving. Its void return type.
- Saves the value to DB immediately and keeps track of the entity until the end of the session.(I have tried to change the entity values outside of the transaction, it does not show any effect when session commits)
- Does not save the changes to the db outside of the transaction.
- Assigns the
generated id
to the entity you are persisting session.persist()
for a detached object will throwPersistentObjectException
as it is not allowed.
Dogecoin
! Earn free bitcoins up to $250 now by signing up.
Earn bitcoins upto $250 (free), invest in other Cryptocurrencies when you signup with blockfi.
Use the referral link: Signup now and earn!
Using BlockFi, don't just buy crypto - start earning on it. Open an interest account with up to 8.6% APY, trade currencies, or borrow money without selling your assets.
Join CoinBase
! We'll both receive $10 in free Bitcoin when they buy or sell their first $100 on Coinbase! Available in India also.
Use the referral Join coinbase!
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull
! Receive free stock by signing up using the link: Webull signup.
More Related questions...