I have multiple sessionFactories that I define in the applicationContext.xml.
I define one session factory (sessionFactory1) with a lot of mapping resources files. I would extract from Java code this list of values to inject in sessionFactory2,... but when I get the bean sessionFactory1, I have an object of type "SessionFactory" and not "LocalSessionFactoryBean".
--> I don't have the good methods in this interface to do that.
Is there a solution to that problem ?

<bean id="sessionFactory1" class="org.springframework.orm.hibernate3.LocalSes sionFactoryBean">
<property name="mappingResources">
<list>
<value>com/model/businessobject/Cwd01_1.hbm.xml</value>
.......................
</list>
........

<bean id="sessionFactory2" ....