• 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
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Interface implementation dependency resolver

 
Ranch Hand
Posts: 252
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

There are some Interfaces and implementation classes.
Some classes would be having dependency on the interface implementation,
If it would have been spring Framework, It will find the interface implementation and assigns implementation class to it.

In the following Spring will find Ishape implementation and assigns it to IShape.


Without Spring,

I need to declare like,


But, the above code is having actual implementation this.shape = new ShapeImpl(); class with-in the code. Is there a way to do without spring using plain java.

Something,like this.shape = createObject(IShape.class) . But,haven't got good Idea about implementation of createObject.

Any help would be appreciated.
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sure, use a factory, or create an object using forName()/newInstance(), or...
 
Ramya Chowdary
Ranch Hand
Posts: 252
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
createObject need to find the implementation class of the interface and then intailize.
Intailizing from classname is fine,But I can't able to find API for finding interface implementaiton class

Can you elaborate more on factory?

Thanks for reply,I would be searching on factory pattern.
 
You guys haven't done this much, have ya? I suggest you study this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic