Hello,
I'm using in my application a mix Spring/Hibernate (nothing original). For a given feature, I have to import the content of a CSV file into a table of my Oracle DB. For now, I juste create the objects, I do
HibernateTemplate.saveOrUpdate
on each of them (I need to retrieve their newly allocated Id)
Then the transaction occurs at the end of the method, using the Spring transaction API.
Everything works fine, except performance, which is correct for some 5000's objects, but not for 100 000...
So I look for ideas to accelerate this stuff. I've heard of bulk inserts with Hibernate, but could not find any solid reference. Can anybody give me some ideas to perform this import with greater performance?