You are here
Home > java >

Spring Dependency Injection

Spring Dependency InjectionIf you are working in a project where spring is being used, you must have heard about the term โ€˜Spring Dependency Injectionโ€™. If not, this is the right time to dig into it as much as possible without further delay. Needless to say, Spring dependency Injection is the heart of the whole Spring Framework. I would also suggest you to go through the practical knowledge of it. However, it is also true that someone canโ€™t understand the concept of Spring Dependency Injection only having the theoretical knowledge.

If you are expecting to learn all the basic and crucial concept behind the Spring Dependency Injection step by step, and if you donโ€™t want to revise the concept more than a hundred times to make it clear, and if you want to face all the cross questions on dependency injection, you are at the right place. In contrast, If you are directly searching the definition of dependency injection, and only want to remember it just to answer in the interview without facing the cross questions on it, this article may not be useful for you. Letโ€™s start discussing our topic โ€˜Spring Dependency Injectionโ€™ and its related concepts.

What is Inversion Of Control (IoC)?

Inversion Of Control (IoC) is a concept of software engineering, where the control of objects or a block of a program is transferred to a container or framework. IoC allows a container to take control of the flow of a program and make calls to our custom code rather than making calls to a library. To implement IoC, the Spring Dependency Injection concept is used.

What is Spring Container?

In the Spring framework, the interface โ€˜ApplicationContextโ€™ represents the Spring container. The Spring container takes responsibility of instantiating, configuring and assembling objects (Spring beans), and managing their life cycles as well. In order to create beans, the Spring container takes help of configuration metadata, which can be in the form of either XML configuration or annotations. Spring Container is the short form ofย  โ€˜Spring IoC containerโ€™ and they are used interchangeably. For further reading on Spring Container, kindly visit Spring Official website (spring.io).

What is a Spring Bean?

In the context of Spring Framework, an object which is managed (instantiated, configured & assembled) by the Spring container is known as Spring bean.

What is Dependency in Spring?

Before learning Spring Dependency Injection, letโ€™s discuss what is โ€˜Dependency In Springโ€™. Letโ€™s consider a simple core Java class โ€˜Invoiceโ€™, its supporting class Vendor and interface TaxDetails as shown below.

public class Invoice {

   String name;
   Double amount;
   List<String> items;
   Vendor vendor;
   TaxDetails taxDetails;
}

class Vendor { 

}

interface TaxDetails {

}

As shown in the code snippet above, Invoice is a class which has various instance variables: name, amount, items, vendor, and taxDetails. If we want to create an object of Invoice, we need all instance variables. In other words, instantiation of class Invoice depends on all the instance variables inside the class. In the context of Spring, our Invoice class/bean has six dependencies: name, amount, items, vendor, and taxDetails. Now, letโ€™s talk about different types of dependencies that Spring Container can inject.

What is a dependent bean in Spring?

When we talk about Spring Dependency Injection, it becomes important to know about dependent bean in Spring. Letโ€™s look into the previous example of Invoice class. We defined the Invoice class as a bean in spring, and it has helper or supporting classes(dependencies) as โ€˜Vendorโ€™ and โ€˜TaxDetailsโ€™. Here, โ€˜Invoiceโ€™ is a target bean and โ€˜Vendorโ€™ is the dependent bean.

A class/spring bean that takes support of other class/spring bean is called target class or main class.

A class/spring bean that acts as a helper class to other class/spring bean is called the dependent class.

Which type of dependencies can a Spring Container Inject?

Spring container can inject dependencies if the dependent variableโ€™s data type is any one of the following.

1) Primitive Typeย  2) Collection Typeย  3) Reference Type (User defined Type)

Based on the data type of the instance variables, we have three types of dependencies.

Primitive Type Dependencyย 

If a variable has its data type from the below list, then the dependency is Primitive Type Dependency. Please note that String is also considered as a primitive type in Spring.

byte, short, int, long, float, double, boolean, char, String

Collection Type Dependencyย 

If a variable has its data type from the below list, then the dependency is Collection Type Dependency. Please note that the Properties is a class, whereas all others are interface. They come under java.util package.

List, Set, Map, Properties

Reference Type Dependencyย 

If a variable is created using a class or an interface as its data type, then the dependency is Reference Type Dependency. In real time Reference Type Dependency is the most commonly used term for dependency. In our example above, variables vendor and taxDetails come under this dependency.

What is an Object Dependency?

When an object depends on another object(s), we call it object dependency. In fact, this is same as Reference Type Dependency as described above. In the context of Spring framework, when a bean depends on another bean(s), we also call it bean dependency. Moreover, the parent bean is called the dependent bean and the instance variables inside the bean are called dependencies.

What is Injection in the term Spring Dependency Injection?ย 

As the word โ€˜injectionโ€™ suggests, inserting something into another thing. In fact, injection is the process of inserting values to variables while creating an object. If we talk about objects, the process of inserting one object into another object is called injection. In this case variable will be a reference type variable.

What is Spring Dependency Injection (DI)?

Spring Dependency Injection (DI) is the feature of the core module of the Spring Framework, where the Spring Container injects other objects into an object. Here, other objects are nothing but dependencies (instance variables) which are declared in the class (Spring Bean).

How many ways to implement Spring Dependency Injection?

There are two ways to implement dependency injection:

1) XML Based

2) Java Annotation Based

In this article, we will focus on Java Annotation-based Configuration, which is the most advanced, easy to implement and used widely across the software industry.

What is Autowiring?

Spring Container detects the relationship between the beans either by reading the XML Configuration file or by scanning the Java annotations at the time of booting up the application. Further, it will create the objects & wire the dependencies. Since Spring Container does this process automatically, it is referred to as Autowiring i.e., Automatic Wiring. Developer only needs to provide @Autowired annotation at a specific place.

Autowire Disambiguation

If more than one bean of the same type is available in the container, the framework will throw a NoUniqueBeanDefinitionException, indicating that more than one bean is available for autowiring. This is referred to as autowire Disambiguation. To resolve this conflict, we need to tell Spring explicitly which bean we want to inject. In order to handle this situation, we make use of @Primary or @Qualifier annotations along with @Autowired annotation. The complete detail is provided in a separate article on How to use @Qualifier and @Primary Annotations?.

We can use autowiring on properties, setters, and constructors. Hence, there are three types of dependency injection.

What are the types of Spring Dependency Injection?ย 

Setter Based Injection

When Spring Container provides values to variables using setter method, we call it Setter Injection. In this case, Spring Container uses the default constructor to create the object. When the annotationย @Autowired is used on top of the classโ€™s setter method, it is known as Setter based Dependency Injection.

@Component 
public class Vendor{
   int code; 
   String name;
} 

public class Invoice{
   
   private Vendor vendor;

   @Autowired
   public void setVendor(Vendor vendor){
      this.vendor=vendor;
   }
}

As shown in the example above, Vendor class has been created using @Component annotation. Hence, Spring container will automatically detect it while starting up the application and will create a bean object for Vendor class. Further, when Spring container detects that the Vendor bean object has been Autowired (using @Autowired) into Invoice class setVendor() method, the bean object created for Vendor will be injected into Invoice class via setter method.

Constructor Based Injectionย 

When Spring Container provides values to variables using parameterized constructor, we call it Constructor Injection. Please note that Spring Container uses parameterized constructor to create the object in this case. When the annotationย @Autowired is used on top of the class constructor, it is known as Constructor-based Dependency Injection.

@Component 
public class Vendor{  
   int code;   
   String name;
} 

public class Invoice{

   private Vendor vendor;

   @Autowired
   public Invoice(Vendor vendor){
      this.vendor=vendor;
   } 
}

As shown in the example above, Vendor class has been created using @Component annotation. Hence, Spring container will automatically detect it while starting up the application and will create a bean object for Vendor class. Further, when Spring container detects that the Vendor bean object has been Autowired (using @Autowired) into Invoice class constructor, the bean object created for Vendor will be injected into Invoice class via constructor.

Field or Property Based Injectionย 

When the annotation @Autowired is used on top of the field or property in the class, it is known as Field-based Dependency Injection.

@Component 
public class Vendor{  
   int code;   
   String name;
} 

public class Invoice{

  @Autowired
  private Vendor vendor;
}

Similar to above both Dependency Injection, here the Autowiring takes place by means of the field โ€˜vendorโ€™. The bean object created for Vendor class will be Autowired & injected via the field, โ€˜vendorโ€™ in Invoice class.

In this case, while creating the Invoice object, if thereโ€™s no constructor or setter method is available to inject the Vendor bean, the container will use reflection to inject Vendor into Invoice.

When to use @Autowired(required = false) ?

Suppose a bean is not registered with Spring Container and we try to apply the @Autowired annotation on it, then Spring will throw an exception because the required dependency is missing. In this case, we can use @Autowired(required = false) to tell Spring Container that this dependency is optional. On doing so, Spring will not throw any exception of the missing dependency.

How to inject Java Collections as a Dependency in Spring?

As aforementioned, we can use List, Set, Map and Properties as an example of the dependency injection.

Letโ€™s create an example bean class:

public class ListCollectionBean { 

   @Autowired 
   private List<String> listOfLanguages; 
   public void printLanguageList() {
       System.out.println(listOfLanguages); 
   } 
}

Now, letโ€™s register the ListCollectionBeanย in theย configuration setup class:

@Configuration 
public class ListCollectionConfig { 
   
   @Bean 
   public ListCollectionBean getListCollectionBean() {
      return new ListCollectionBean(); 
   }
   
   @Bean 
   public List<String> listOfLanguages() {
      return List.of("Java", "Scala", "Python"); 
   } 
}

Similarly, we can inject any type of Collection as a dependency.

How to inject bean/object references as an element of a Collection in Spring?

In the above example, we have seen the injection of a Collection where elements are String. Here in this section we will look at a collection where elements of the collection will be bean/object references.

Letโ€™s create a bean:

public class MyTestBean { 

ย  ย  private String name; 
 
    public MyTestBean(String Name){
       this.name=name;
    } 
}

And add aย Listย ofย MyTestBean as a property to the MyCollectionBean class as below:

public class MyCollectionBean {
   
   @Autowired(required = false) 
   private List<MyTestBean> beanList; 
   
   public void printBeanList() { 
      System.out.println(beanList); 
   } 
}

Now, letโ€™s create a configuration class and create some beans of type MyTestBean as below:

@Configuration 
public class CollectionConfig { 
   
   @Bean 
   public MyTestBean getFirstObject() {
      return new MyTestBean("bean1"); 
   } 
   
   @Bean 
   public MyTestBean getSecondObject() {
      return new MyTestBean("bean2"); 
   } 
  
   @Bean 
   public MyTestBean getThirdObject() {
      return new MyTestBean("bean3"); 
   } 
   // other methods 
}

Here, Spring Container will inject the specific beans of the MyTestBean type into the collection. Further, on invoking the printBeanList() method, the output will show the bean names as list elements: [bean1, bean2, bean3].

If you want Spring container to inject the beans in a particular order, you can use @Order annotation with index. For example, below code demonstrates the concept. In order to have complete understanding of @Order annotation, kindly visit a separate article on the @Order annotation of Spring Annotations.

@Configuration 
public class CollectionConfig { 
 
   @Bean 
   @Order(1)
   public MyTestBean getFirstObject() {
      return new MyTestBean("bean1"); 
   } 
 
   @Bean 
   @Order(0)
   public MyTestBean getSecondObject() {
      return new MyTestBean("bean2"); 
   } 
 
   @Bean  
   @Order(2)  
   public MyTestBean getThirdObject() {
      return new MyTestBean("bean3"); 
   } 
}

As per the @Order annotation shown above, the injection order will be: bean2, bean1, bean3

What are the benefits of Dependency Injection?

1) Most importantly, the dependency Injection helps in achieving loose coupling between objects.

2) As the dependency between objects becomes loosely coupled, it helps the developers to test the module by injecting the dependent Mock Objects (for example, making use of Spring Mockito).

3) When the objects are independent of each other & can be injected, the scope of code reusability increases.

4) It makes code more readable. We donโ€™t have to look through all the code to see what dependencies we need to satisfy for a given component. They are all visible in the interface.

What are the disadvantages of Dependency Injection?

1) As the Dependency Injection offers loose coupling, it concludes increasing the number of classes & interfaces.

2) While implementing the Dependency Injection, Spring container takes the control rather than the developer. Hence, it becomes difficult for the developers to learn how things work in the background & also to have customization.

FAQ

When To Use Setter Injection and When To Use Constructor Injection?

This is the most important question in the context of Spring Dependency Injection and there are high chances of being it asked in an interview. There are various scenarios where one is better to use than another.

1) Constructor injection is the preferred approach when all bean properties of a Spring Bean class are required to participate in dependency injection. For instance, if a Spring Bean class has five bean properties that all participate in dependency injection, a single constructor with five parameters can accomplish the task. In contrast, using setter injection would require five setter methods to complete the job.

2) Setter injection is the recommended approach when bean properties of a Spring Bean class are optional to participate in dependency injection, and the number of properties that participate may vary. For example, if a Spring Bean class has five bean properties, at most, five setter methods are needed. On the other hand, achieving the same result using constructor injection requires creating 120 (5x4x3x2x1) overloaded constructors.

3) When some properties of a Spring Bean class are mandatory for Spring dependency injection, while others are optional, the recommended approach is to use constructor injection for mandatory properties and setter injection for optional properties. For instance, if a Spring Bean class has five bean properties, with three mandatory properties and two optional properties, add a three-parameter constructor for mandatory injection and two setter methods for optional injection.

Are there any disadvantages to Dependency Injection in Spring?

Undoubtedly, Dependency Injection is a powerful and extensively used technique in the Spring framework. However, it has its own set of possible disadvantages and challenges. One of the disadvantage can be the Complexity of Configuration. In larger Spring-based applications, the configuration for dependency injection can become complex, especially when dealing with a large number of beans and their dependencies. This complexity can sometimes make the configuration hard to maintain. Overuse of dependency injection can lead to a complex dependency cycle.

ย 

ย 

Leave a Reply


Top