IntelliJ open source
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Application Frameworks » Other Application Frameworks
 
RSS feed
 
New topic
Author

How is IoC useful over conventional object instantiation ?

Schandha Ravi
Ranch Hand

Joined: Oct 20, 2007
Messages: 167

Hi All,

I'm relatively new to Spring and espicially to IoC. Unrelated to Spring, can some one explain me with an example, how IoC is useful over conventional object instantiation (using new keyword). What is the benefit of this re-direction, where in creation and wiring of the objects is delegated to IoC container instead of handling it in code. I'm pretty sure that, there might be something apart from freeing the code from object creation, which does not seem to be lot of problematic.

Thanks & Regards, SK
SCJP 5.0, DB2 - 800, DB2 - 803, SCDJWS (On the way)
David Newton
Author
Bartender

Joined: Sep 29, 2008
Messages: 6852

IoC allows us to decouple the interface from the implementation, and can allow external forces to determine the implementation.

Consider the implications for testing method foo:We can only test foo() with an instance of a Bar. If we need to test the return value of foo(), we now have to re-implement our Bar.baz() to return each of the possible conditions foo() could encounter. If, on the other hand, we allow the Bar to be set, our unit test can decide which condition we're testing:IoC also allows for strong configurability. Consider a program intended to allow easy extension or modification of key components. Instead of going in and changing the original source code, we can just tell the program at startup which implementation to use. This might allow us to customize how HTTP requests are handled, provide a plugin mechanism, and so on.

Consultant/Trainer | Polyglottal Developer | Struts Committer/PMC | Struts 2 Web Application Development
Schandha Ravi
Ranch Hand

Joined: Oct 20, 2007
Messages: 167

Thank you for explaining with an example. I have started reading "Spring in action" to understand more on this framework and I'm sure that I would come up with more questions to ask.

Thanks & Regards, SK
SCJP 5.0, DB2 - 800, DB2 - 803, SCDJWS (On the way)
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Application Frameworks » Other Application Frameworks
 
RSS feed
 
New topic
IntelliJ open source