posted 16 years ago
I have a stand alone program that loads application context and then fetches the jdbctemplate using datasource defined in the context file in the main program.
I do have other DAO classes defined in the application context, but when they are called i am not able to get access to the Jdbctemplate, unless i pass it into them.
Here is my example config for the DAO does say it is 'datasource' driven:
<bean id="requestData" class="com.x.y.z.dao.RequestDAO">
<property name="dataSource" ref="dataSource" />
</bean>
Do i need to make the DAOs applicationcontext aware or something similar??
[ August 14, 2008: Message edited by: Kishore Dandu ]