• 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
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

dependency injection using concrete classes

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, i have followed the hibernate Factory implementation which uses abstractDAO for all my DAOs. I now need to inject my DAOs which extends this Abstract to Spring service layer (Manager class). Here's an example


Problem is basketDao is an interface, and all these crud methods (except findBasketByReference() which is unique to DAO) are abstract/generic therefore not implemented on any of my DAOs but on AbstractDAOImpl. So they aren't visible to the interface BasketDAO which is injected to the service. Can i inject rather BasketDAOImpl as it will access these methods
 
Sheriff
Posts: 22862
132
Eclipse IDE Spring TypeScript Quarkus Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving to our Object Relational Mapping forum.
 
reply
    Bookmark Topic Watch Topic
  • New Topic