Ok, I did it. With LOG4J I could isolate the problem and, for some reason I don't understand, it stops and keeps waiting indefinetely at the point bellow:
[file "SessionFactoryImpl.java" at hibernate source files directory]
class constructor SessionFactoryImpl(...) partial code:
[...]
//Persisters:
log.info("persisters loop");
Iterator iter;
classPersisters = new HashMap();
classPersistersByName = new HashMap();
iter = cfg.getClassMappings();
while ( iter.hasNext() ) {
PersistentClass model = (PersistentClass) iter.next();
ClassPersister cp = PersisterFactory.create(model, this); // problem
classPersisters.put( model.getPersistentClass(), cp );
classPersistersByName.put( model.getName(), cp );
}
[...]
What it could be? I did rebuild the entire hibernate2.jar file, but nothing changed.
_________________ Pablo Faria
Student and Researcher in Computer Sciences
Musician too.
Personal website: www.tupinikim.org
|