• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Spring Question: How to realize IOC in stand alone programs?

 
Ranch Hand
Posts: 1934
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic