Hi
When I start my Java software, the first access to the database is slow. I use hibernate with the Java Persistence API. In the logfiles I see, the first access to hibernate generates following entry:
AbstractJarVisitor:116 Searching mapped entities in jar/par: file:/xyz/myjarfile.jar AbstractJarVisitor:162 Filtering: packagename.Class1 AbstractJarVisitor:162 Filtering: packagename.Class2 ...
Because there are so many classes in the jar file, the filtering takes 30 seconds.
What is this AbstractJarVisitor Filtering? Can I disable it?
Thanks for help!
|