sorry if this is off topic now, but im following up on my post refering to the test folder earlier.
I have had a look in the zip distribution & at the online cvs repository, but i cant find the testing folder with the example applicationContext.xml file.
specifically, i am having trouble defining the hibernateConfiguration property of my org.springmodules.workflow.jbpm30.LocalJbpmSession FactoryBean bean (im using jbpm 3.0.2). I already have a org.springframework.orm.hibernate3.LocalSessionFac toryBean defined in my applicationContext.xml and i would like to use the configuration from this session factory. can you point me in the right direction regarding this?
My bean def so far:
Code:
<bean id="hibernateSessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="mappingResources">
<list>
<value>...</value>
</list>
</property>
<property name="hibernateProperties">
<props>...</props>
</property>
<property name="dataSource">
<ref bean="..."/>
</property>
</bean>
<bean id="jbpmSessionFactoryBean" class="org.springmodules.workflow.jbpm30.LocalJbpmSessionFactoryBean">
<property name="hibernateSessionFactory" ref="hibernateSessionFactory"/>
</bean>
Thanks for any assistance forthcoming
- tobes