I\'m using hibernate + play! framework at work, is there a \"best practice\" on inserting a good amount of records using hibernate? They are around 6,000 to 10,000 per text
You can always get a Connection object directly in case you want to do the inserts outside of hibernate.
Connection connection = DB.getConnection();