When you use Hibernate, you are actually using two caches. The first is the session cache. Let's say you query 2000 records, update and save changes to 5, and then run the same query again (all in the scope of a single session). Hibernate will not actually run the query a second time - it knows that you have the 2000 records (and the 5 edits) already loaded into memory. This cache is turned on automatically - you can't turn it off, as it's part of Hibernate's core functionality. You do need to close (or at least flush) your session to actually ensure that changes are applied - you don't just want to open one giant session and keep changing things or eventually you will run out of memory.
The second level cache basically puts a key-value store in between your application and the database. This cache is generally longer-lived, and multiple sessions can use it, but it's also more complex (e.g. needs to properly deal with threading, invalidation, etc). The biggest problem is that if your data is changing a lot, you are actually have to make changes both in the second level cache and the database, which can be slower than just making changes directly. The second level cache is fantastic for read-only data, however.
Tuning Hibernate and the caches can be quite challenging and complex. I highly recommend the use of a tool such as p6spy to see the database traffic between your application and the database.