CSC/ECE 517 Fall 2010/ch5 5e dr

From Expertiza_Wiki
Revision as of 23:20, 2 November 2010 by Whiteopal (talk | contribs)
Jump to navigation Jump to search

Dependency Injection

Overview

Every enterprise application involves handful number of objects that work together to achieve some purpose. These objects are coupled with each other and work in collaboration, making the classes highly dependent. However, creating such code involving highly coupled classes defeats an important tenet of Object oriented design- ‘loose coupling’. Loose coupling means that objects should have the minimum number of dependencies, which makes the code easy to understand, modify and debug. It also allows for greater code reusability and improves the maintainability. http://www.codeproject.com/KB/architecture/DependencyInjection.aspx This drive to decouple the code from its highly dependent objects leads to the concept of Dependency Injection.

Definition

The basic concept of Dependency Injection (DI) is that you do not create the objects themselves, but describe how they should be created. It is one of the more popular design paradigms known today, by which the objects define their dependencies, i.e. the objects or classes they work with. DI pattern provides better a software design that makes the code cleaner, since the object doesn’t need to look for other components it works with, or know their location and class. http://www.springframework.net/doc-latest/reference/html/objects.html#objects-factory-collaborators It facilitates the design of applications, using a framework that links the components, instead of the components linking themselves.

In other words, Dependency Injection, also known as Inversion Of Control (IoC), transfers the responsibility to locate and create the objects to the framework or the container which supports plug-n-play implementation, by injecting the dependencies into your code.

Features of Dependency Injection Main features of Dependency Injection Framework are:

  • Better Design Pattern - Supports good Object-Oriented Design.
  • Clean Code- Eliminates the need of looking up code from the application.
  • Reuse - Promotes better code reusability.
  • Loose Coupling- Objects are loosely coupled using DI
  • Simple- It is very simple to implement, just need to inject the dependencies of any object.
  • Maintainable- It is very easy to reconfigure and maintain in case of any future changes.


Dependency Injection Frameworks

Dependency Injection requires a framework that helps the developer to declare the dependencies, to locate, instantiate, and initialize the components or the objects. A developer has many available frameworks to him:

  • Spring Framework – A light weight container, most widely used for DI and very large framework, which includes a lot many other features like Aspect Oriented, framework, container, etc. along with Dependency Injection
  • XWork - It is a standalone framework and mostly works in conjunction with Webworks . It is highly effective command pattern framework that provides a lot of features for DI.
  • Apache Avalon- This is also a container framework which supports the dependency injection design pattern. This frameworks is now divided into sub-frameworks.
  • PicoContainer - It is highly focused DI framework available.
  • Hivelogic – Another DI framework to inject dependencies.