What are the things to avoid when using a IoC container? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:18:13Z http://stackoverflow.com/feeds/question/1081379 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081379/what-are-the-things-to-avoid-when-using-a-ioc-container 3 What are the things to avoid when using a IoC container? Sly 2009-07-04T02:44:00Z 2009-08-05T02:52:00Z <p>I'm introducing an IoC Container in an architecture for the first time. I'm looking for things that one <strong>should not</strong> do with an IoC Container. I want to avoid the pitfalls of using an IoC container. I don't want to misuse or overuse it.</p> <p>Can you help me put up a list of things to avoid when using a IoC container?</p> <p>I have on item on my list so far:</p> <ul> <li>Don't let every class access the container (don't make it a public Singleton). Only a few top level classes should access the container.</li> </ul> http://stackoverflow.com/questions/1081379/what-are-the-things-to-avoid-when-using-a-ioc-container/1081406#1081406 0 Answer by NotDan for What are the things to avoid when using a IoC container? NotDan 2009-07-04T03:11:41Z 2009-07-04T03:11:41Z <p>I'd say don't use config files for registering types unless you absolutely have to. It makes refactoring hard and it's also harder to unit test with your default (non mock) mappings.</p> http://stackoverflow.com/questions/1081379/what-are-the-things-to-avoid-when-using-a-ioc-container/1081423#1081423 2 Answer by amazedsaint for What are the things to avoid when using a IoC container? amazedsaint 2009-07-04T03:25:58Z 2009-07-04T03:25:58Z <p>If you are putting an IoC in place, I suggest you to have a look at <a href="http://docs.codehaus.org/display/YAN/IoC+Container" rel="nofollow">http://docs.codehaus.org/display/YAN/IoC+Container</a></p> <p>Here are few interesting points</p> <blockquote> <ul> <li>The most obvious one, container should not require business objects assembled by it to implement any interface, to inherit any class, to call any API. This avoids direct dependency on the container.</li> <li><p>The container should not require business objects to conform to any coding convention, such as "you have to expose public constructor", "you have to expose Java Bean setters", "you have to have a method named like injectXXX", "you have to use a special annotation" etc. Such restriction places an implicit dependency on the container because the programmers of the business objects still have to be aware of the do's and dont's from the container.</p></li> <li><p>Do not depend on any IoC container API in your IoC objects. It is a tragedy to violate the principle of IoC by using an IoC container. </p></li> <li>IoC container is for the code that assembly objects together; it is for the configuration of the system. After all, it is not for the business objects.</li> <li>Declarative API is preferable. It is nice to expose a declarative API rather than one that requires procedural coding.</li> </ul> </blockquote> http://stackoverflow.com/questions/1081379/what-are-the-things-to-avoid-when-using-a-ioc-container/1230945#1230945 2 Answer by Nicholas Blumhardt for What are the things to avoid when using a IoC container? Nicholas Blumhardt 2009-08-05T02:52:00Z 2009-08-05T02:52:00Z <p>Maybe this is more simplistic than the kind of advice you're looking for, but my suggestion would be: don't get hung up on the container.</p> <p>IoC is 1% about the container, and 99% about the components inside. They're what gives the application value - the container on the other hand is infrastructural junk ;)</p> <p>You should be able to design those components in the most effective way for your application.</p> <p>If you start out with what seems to be a good container, and have no trouble creating well-encapsulated, clean, natural components that don't depend heavily on the container API, then you're on the right track.</p> <p>If, however, you find yourself jumping through hoops to fit your design into the container, and you don't think the problem is with your design, the immediately find a container without the limitation that's impacting you, and just keep moving forwards.</p> <p>Hope this helps!</p> <p>Nick</p>