I came across the usage of below property in one of my project under hibernate.cfg.xml.
But i am not clear whats this is used for and when it comes into picture? Code:
<property name="transaction.factory_class"> MyProjectTransactionFactory </property>
where
MyProjectTransactionFactory implements TransactionFactory.Just for information i am also using below property
Code:
<property name="hibernate.connection.provider_class">myProject.PoolConnectionProvider</property>
I do not see any transaction manager defined under configuration file.