行Configuration().configure().buildSessionFactory()
如何返回SessionFactory
的对象,该对象是Configuration
类未实现的接口?
答案 0 :(得分:0)
Hibernate项目是开源的。欢迎您look为自己。
public SessionFactory buildSessionFactory() throws HibernateException {
log.debug( "Preparing to build session factory with filters : " + filterDefinitions );
secondPassCompile();
validate();
Environment.verifyProperties( properties );
Properties copy = new Properties();
copy.putAll( properties );
PropertiesHelper.resolvePlaceHolders( copy );
Settings settings = buildSettings( copy );
return new SessionFactoryImpl(
this,
mapping,
settings,
getInitializedEventListeners(),
sessionFactoryObserver
);
}