Hibernate version: 3.0.5
Mapping documents:
Code between sessionFactory.openSession() and session.close():
Code:
//Initial load of data
.load
//Data changes in the database
.load //Changes not reflected in object because of the cache
Full stack trace of any exception that occurs: N/A
Name and version of the database you are using: Oracle 9
The generated SQL (show_sql=true): N/A
Debug level Hibernate log excerpt: N/A
Is there anyway to turn off the first level cache? I was using .clear(), but now with leveraging lazy loading, I receive an "evicted collection" exception after the clear. Any ideas or suggestions?