Dependency injection (DI) is a process whereby objects define their dependencies, that is, the other objects they work with, only through constructor arguments, arguments to a factory method, or properties that are set on the object instance after it is constructed or returned from a factory method. The container then injects those dependencies when it creates the bean. This process is fundamentally the inverse, hence the name Inversion of Control (IoC), of the bean itself controlling the instantiation or location of its dependencies on its own by using a direct construction of classes, or the Service Locator pattern.
Advantages of Dependency Injection
- Decoupling: Code is cleaner with the DI principle and decoupling is more effective when objects are provided with their dependencies.
- Easier to test: As such, your classes become easier to test, in particular when the dependencies are on interfaces or abstract base classes, which allow for stub or mock implementations to be used in unit tests.
DI exists in two major variants :
- Constructor-based dependency injection
- Setter-based dependency injection.
Constructor-based dependency injection
Constructor-based DI is accomplished by the container invoking a constructor with a number of arguments, each representing a dependency.In the below diagram, the highlighted part shows the Constructor-based dependency injection.
Constructor-based dependency injection example
Let's see the complete example to demonstrate Constructor-based dependency injection.As we know, spring java and annotation based configurations are quite easy to use in spring based applications so I prefer to use a mix of java and annotation based spring configurations.
Let's create spring configuration file using java class AppConfiguration which is annotated with @Configuration annotation. This is equivalent to spring XML configuration file without beans definition.
package com.javadevsguide.springframework.di.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("com.javadevsguide.springframework.di")
public class AppConfiguration {
}
Now create a MessageService interface and provide more than two implementations for it.
public interface MessageService {
public void sendMsg(String message);
}
Let's implement the MessageService interface. There are many ways to send a message like through email, SMS, twitter etc.
@Service("EmailService")
public class EmailService implements MessageService{
public void sendMsg(String message) {
System.out.println(message);
}
}
@Service("SMSService")
public class SMSService implements MessageService{
public void sendMsg(String message) {
System.out.println(message);
}
}
@Service("TwitterService")
public class TwitterService implements MessageService{
public void sendMsg(String message) {
System.out.println(message);
}
}
It's time to demonstrate the usage of Constructor-based dependency injection. To avoid decoupling always use interfaces or abstract base classes as an instance variable and constructor arguments. In this example, we have used MessageService interface.
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;
import com.javadevsguide.springframework.di.service.MessageService;
@Component
public class ConstructorBasedInjection {
private MessageService messageService;
@Autowired
public ConstructorBasedInjection(@Qualifier("TwitterService")
MessageService messageService) {
super();
this.messageService = messageService;
}
public void processMsg(String message) {
messageService.sendMsg(message);
}
}
It's time to test the usage of Constructor-based dependency injection. Let's create IOC container object that is an ApplicationContext object and get the beans from it.
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import com.javadevsguide.springframework.di.config.AppConfiguration;
import com.javadevsguide.springframework.di.field.FieldBasedInjection;
public class TestApplication {
public static void main(String[] args) {
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(AppConfiguration.class);
FieldBasedInjection fieldBasedInjection = applicationContext.getBean(FieldBasedInjection.class);
fieldBasedInjection.processMsg("twitter message sending ");
}
}
Setter-based dependency injection
Setter-based DI is accomplished by the container calling setter methods on your beans after invoking a no-argument constructor or no-argument static factory method to instantiate your bean.
The following example shows a class that can only be dependency-injected using pure setter injection. This class is conventional Java.
In the below diagram, the highlighted part shows the setter-based dependency injection.
In the below diagram, the highlighted part shows the setter-based dependency injection.
Setter-based dependency injection example
Let's see the complete example to demonstrate Setter-based dependency injection.As we know, spring java and annotation based configurations are quite easy to use in spring based applications so I prefer to use a mix of java and annotation based spring configurations.
In this example, we have used spring Java-based container configuration.
Let's create spring configuration file using java class AppConfiguration and annotated with @Configuration annotation. This is equivalent to spring XML configuration file without beans definition.
package com.javadevsguide.springframework.di.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("com.javadevsguide.springframework.di")
public class AppConfiguration {
}
Now create MessageService interface and provide more than two implementations for it.
public interface MessageService {
public void sendMsg(String message);
}
Let's implement the MessageService interface. There are many ways to send a message like through email, SMS, twitter etc.
@Service("EmailService")
public class EmailService implements MessageService{
public void sendMsg(String message) {
System.out.println(message);
}
}
@Service("SMSService")
public class SMSService implements MessageService{
public void sendMsg(String message) {
System.out.println(message);
}
}
@Service("TwitterService")
public class TwitterService implements MessageService{
public void sendMsg(String message) {
System.out.println(message);
}
}
It's time to demonstrate the usage of Setter-based dependency injection. To avoid decoupling always use interfaces or abstract base classes as an instance variable and setter method arguments. In this example, we have used the MessageService interface.
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;
import com.javadevsguide.springframework.di.service.MessageService;
@Component
public class SetterBasedInjection {
private MessageService messageService;
@Autowired
@Qualifier("TwitterService")
public void setMessageService(MessageService messageService) {
this.messageService = messageService;
}
public void processMsg(String message) {
messageService.sendMsg(message);
}
}
It's time to test the usage of Constructor-based dependency injection. Let's create IOC container object that is an ApplicationContext object and get the beans from it.
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import com.javadevsguide.springframework.di.config.AppConfiguration;
import com.javadevsguide.springframework.di.field.FieldBasedInjection;
public class TestApplication {
public static void main(String[] args) {
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(AppConfiguration.class);
SetterBasedInjection setterBasedInjection = applicationContext.getBean(SetterBasedInjection.class);
setterBasedInjection.processMsg("twitter message sending ");
}
}
Note that we have used AppConfiguration class annotated with @Configuration for configurations.
Conclusion
In this example, we have seen the dependency injection in Spring. We have demonstrated constructor-based dependency injection and setter-based dependency injection with examples.The source code of this article can be found on the GitHub project – this is an Eclipse based project, so it should be easy to import and run as it is.
Github Repository: Guide to Dependency Injection in Spring
there is syntax error when you write code , the annotation @Qualifier is disallowed for this location , so you need to put the annotation inside param method like this
ReplyDelete@Autowired
public ConstructorBasedInjection(@Qualifier("EmailService") MessageService messageService) {
super();
this.messageService = messageService;
}