VOOZH about

URL: https://www.javacodegeeks.com/2021/01/spring-injection-types.html

⇱ Spring Injection Types - Java Code Geeks


Spring supports three types of dependency injections:

Constructor injection

@Component
public class SecondBeanImpl implements SecondBean {

 private FirstBean firstBean;

 @Autowired
 public SecondBeanImpl(FirstBean firstBean) {
 this.firstBean = firstBean;
 }
}

That is similar to:

FirstBean firstBean = new FirstBeanImpl();
SecondBean secondBean = new SecondBeanImpl(firstBean);

This type of dependency injection instantiates and initializes the object.
In this approach, beans are immutable and dependencies are not null. However, if you define many parameters in the constructor, your code is not clean.
From Spring 4.3 the @Autowired annotation is not required if the class has a single constructor.

Setter injection

@Component
public class SecondBeanImpl implements SecondBean {

 private FirstBean firstBean;

 @Autowired
 public setFirstBean(FirstBean firstBean) {
 this.firstBean = firstBean;
 }
}

That is similar to:

FirstBean firstBean = new FirstBeanImpl();
SecondBean secondBean = new SecondBeanImpl();
secondBean.setFirstBean(firstBean);

In this approach, beans are not immutable (the setter could be called later), and not mandatory dependencies can lead to NullPointerExceptions.

Field injection

@Component
public class SecondBeanImpl implements SecondBean {

 @Autowired
 private FirstBean firstBean;
}

This approach may look cleaner but hides the dependencies and makes testing difficult. While constructor and setter injections use proxies, field injection uses reflection which could affect the performance. Could be used in test classes.

Published on Java Code Geeks with permission by Eidher Julian, partner at our JCG program. See the original article here: Spring Injection Types

Opinions expressed by Java Code Geeks contributors are their own.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Thank you!

We will contact you soon.

Tags
Spring
πŸ‘ Photo of Eidher Julian
Eidher Julian
January 21st, 2021Last Updated: January 19th, 2021
0 327 1 minute read

Eidher Julian

Eidher Julian is a Systems Engineer and Software Engineering Specialist with 13+ years of experience as a Java developer. He is an Oracle Certified Associate and SOA Certified Architect.
Subscribe

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Back to top button
Close
wpDiscuz