-
Dec 15th, 2005, 10:05 AM
#1
populate mappingResources in runtime (hibernate)
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" ....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules