I have been using Hibernate/Spring. I have a small doubt. If we get 1000 records from one table and save to another table using saveOrUpdate()
method it saves.
If I call the same method by passing same 1000 records without modifying any record, how hibernate behaves here? Does it fires 1000 update queries or it cleverly identifies whether record is really modified or not?
Thanks!