would you expect an application to spend a lot of time in FieldInterceptionHelper?
I have a new application built with jTDS, Hibernate 3.6.3, and Spring Data JPA 1.0.0M2. The first step is to load some data into the database from flat files and it's taking longer than I expected. I ran under VisualVM to get samples and found about 54% of my time (about 100s out of 185s) is spent in FieldInterceptionHelper.extractFieldInterceptor and FieldInterceptionHelper.isInstrumented.
I searched for an explanation and I think it's related to lazy loading but I can't find a definitive answer.
Can you tell me more about why an application would spend so much time in those methods?
|