This post is part of a multiple parts tutorial, This part, as the heading suggests will focus on leveraging Dependency Injection with Spring Context.
Note, Spring so much more than "just" a di framework, but this post touches Spring frameworks IoC container, also known as Spring context. Spring Boot and any other Spring related is outside the scope of this post.
It's advised to start with Part 1 - Merely a design pattern, to have a sufficient understanding of the dependency injection design pattern required for this part of the tutorial.
But, in you wanna start here instead, I'll recap in a sentence: Dependency Injection is merely a design pattern, a technique, for achieving Inversion of Control by writing loosely-coupled code.
That's it, you're all caught up. 😁
Between Part 1 and this part, you can go through Part 2 - Leveraging with Google Guice. It's not at all mandatory for the understanding of this part of this tutorial. Both parts are pretty similar, leveraging different di frameworks.
If you have read Part 2, you can skip to the incorporating spring section, as this next part is copied from Part 2 for those who aren't interested in Goole Guice.
So... You're probably asking yourselves, what is there to leverage in a base code that follows the dependency injection design pattern ❔
The answer is simple, Everything... ❕ I promise you, by the time you'll get through this post, you'll understand the benefits and the necessity of incorporating a di framework in your app.
First, let's touch base about how does dependency injection frameworks work... It's pretty straight forward, the framework creates dependencies for you!
On one end, you give the framework specific instructions on how to create your dependencies, on the other end, your objects can either declare the dependencies they need or ask the framework directly for them. Either way, the framework will comply and return the dependencies as you instructed it.
That's di frameworks in a nutshell, every DI framework, and I mean Every DI Framework, I came across, basically works the same.
Sure, there may be different features, different component names, different default behaviors, and most probably different implementation under the hood.
But, to us, the users of those frameworks, there are so many similarities, that I can safely say, If you know one well enough, catching up to another one, should be a piece of 🍰.
For instance, you can find similarities between:
Spring's Autowired and Guice's Inject, both mark a dependency for injection.
Spring's Bean and Guice's Provides, both incorporate logic for creating a dependency.
Not a believer yet ❔ Alright, let's throw C#
in the mix ❕
Spring's Configuration, Guice's Modules, and Autofac's Modules, can be used to configure dependencies.
Guice's Binding and Autofac's Registration, are used to configure dependencies with the framework's DSL.
I can go on... But I believe my point is made. 😎
Under the hood, the framework builds factories that can provide the dependencies to objects based on multiple criteria, such as type and name.
At the base level, there are 3 common scopes for dependencies living in the di framework context:
There are more scopes, but these are the most commonly used three. You'll probably bump into dependencies per-session, per-request, per-dependency, and so on... Some frameworks offer different scopes than others, as features.
So... Let's code.
Heads up, the example application is the same as the one in Part 1 - Merely a design pattern minus the parts before incorporating the dependency injection design pattern. If you got the app section from Part 1, you can skip to the incorporating spring section.
You can check out the code for this part of the tutorial in Github.
Let's build an app that collects mail from both Gmail and Microsoft leveraging the Dependency Injection pattern with Spring Context
.
An Enum called MailSource
for categorizing the mail source:
public enum MailSource {
GMAIL,
MICROSOFT;
}
An abstract class Mail
for contracting mail objects.
public abstract class Mail {
public abstract String from();
public abstract String subject();
public abstract MailSource source();
@Override
public String toString() {
return String.format("Got mail by %s, from %s, with the subject %s", source(), from(), subject());
}
}
An interface for contracting services responsible for collecting mail from suppliers, the MailService
.
public interface MailService {
List<Mail> getMail();
}
And last, an interface for contracting an engine responsible for collecting mail from multiple services, the MailEngine
.
public interface MailEngine {
List<Mail> getAllMail();
}
For convinience and immutability, The concrete Mail
implementaions were designed with a builder pattern.
The Gmail Mail
implementation, GmailImpl
:
public final class GmailImpl extends Mail {
private final String setFrom;
private final String setSubject;
private GmailImpl(final String from, final String subject) {
setFrom = from;
setSubject = subject;
}
@Override
public String from() {
return setFrom;
}
@Override
public String subject() {
return setSubject;
}
@Override
public MailSource source() {
return MailSource.GMAIL;
}
public static GmailImpl.Builder builder() {
return new GmailImpl.Builder();
}
public static final class Builder {
private String prepFrom;
private String prepSubject;
public Builder from(final String setFrom) {
prepFrom = setFrom;
return this;
}
public Builder subject(final String setSubject) {
prepSubject = setSubject;
return this;
}
public GmailImpl build() {
requireNonNull(emptyToNull(prepFrom), "from cannot be empty or null");
requireNonNull(emptyToNull(prepSubject), "subject cannot be empty or null");
return new GmailImpl(prepFrom, prepSubject);
}
}
}
The Micsorosft Mail
implementation, MicrosoftImpl
:
public final class MicrosoftImpl extends Mail {
private final String setFrom;
private final String setSubject;
private MicrosoftImpl(final String from, final String subject) {
setFrom = from;
setSubject = subject;
}
@Override
public String from() {
return setFrom;
}
@Override
public String subject() {
return setSubject;
}
@Override
public MailSource source() {
return MailSource.MICROSOFT;
}
public static MicrosoftImpl.Builder builder() {
return new MicrosoftImpl.Builder();
}
public static final class Builder {
private String prepFrom;
private String prepSubject;
public Builder from(final String setFrom) {
prepFrom = setFrom;
return this;
}
public Builder subject(final String setSubject) {
prepSubject = setSubject;
return this;
}
public MicrosoftImpl build() {
requireNonNull(emptyToNull(prepFrom), "from cannot be empty or null");
requireNonNull(emptyToNull(prepSubject), "subject cannot be empty or null");
return new MicrosoftImpl(prepFrom, prepSubject);
}
}
}
The Gmail MailService
implementation:
public final class GmailService implements MailService {
@Override
public List<Mail> getMail() {
// this is where the actual Gmail api access goes.
// we'll fake a couple of mails instead.
var firstFakeMail =
GmailImpl.builder()
.from("a.cool.friend@gmail.com")
.subject("wanna get together and write some code?")
.build();
var secondFakeMail =
GmailImpl.builder()
.from("an.annoying.salesman@some.company.com")
.subject("wanna buy some stuff?")
.build();
return List.of(firstFakeMail, secondFakeMail);
}
}
The Microsoft MailService
implementation:
public final class MicrosoftService implements MailService {
@Override
public List<Mail> getMail() {
// this is where the actual Microsoft api access goes.
// we'll fake a couple of mails instead.
var firstFakeMail =
MicrosoftImpl.builder()
.from("my.boss@work.info")
.subject("stop writing tutorials and get back to work!")
.build();
var secondFakeMail =
MicrosoftImpl.builder()
.from("next.door.neighbor@kibutz.org")
.subject("do you have philips screwdriver?")
.build();
return List.of(firstFakeMail, secondFakeMail);
}
}
public final class RobustMailEngine implements MailEngine {
private final Set<MailService> mailServices;
public RobustMailEngine(final Set<MailService> setMailSerices) {
mailServices = setMailSerices;
}
@Override
public List<Mail> getAllMail() {
return mailServices.stream().map(MailService::getMail).flatMap(List::stream).collect(toList());
}
}
This is the app itself, the MailCollectorApp
:
public final class MailCollectorApp {
private MailEngine engine;
public MailCollectorApp(final MailEngine setEngine) {
engine = setEngine;
}
public String getMail() {
var ret = "No mail found.";
if (!engine.getAllMail().isEmpty()) {
ret = Joiner.on(System.lineSeparator()).join(engine.getAllMail());
}
return ret;
}
public static void main(final String... args) {
var gmailService = new GmailService();
var microsoftService = new MicrosoftService();
var engine = new RobustMailEngine(Set.of(gmailService, microsoftService));
var app = new MailCollectorApp(engine);
System.out.println(app.getMail());
}
}
Executing the main method will print:
Got mail by GMAIL, from a.cool.friend@gmail.com, with the subject wanna get together and write some code?
Got mail by GMAIL, from an.annoying.salesman@some.company.com, with the subject wanna buy some stuff?
Got mail by MICROSOFT, from my.boss@work.info, with the subject stop writing tutorials and get back to work!
Got mail by MICROSOFT, from next.door.neighbor@kibutz.org, with the subject do you have a star screwdriver?
As you may have noticed, this application uses the dependency injection design pattern.
The dependencies are currently controlled by the main
method, so it should be easy to incorporate Spring Context.
First off, add this to your pom.xml in the dependencies section: Please note the version, this version was the latest at the time this tutorial was written.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.8.RELEASE</version>
</dependency>
We need to tell Spring about the dependencies we want to be injected. But it's only mandatory for property and method based injections, in our example we're using constructor based injection, so there's no need to annotate with @Autowierd.
So basically... if you're using constructor based injection, which is always the best practice if possible, then there's nothing to do in this section.
But for this tutorial's sake, I'll use the @Autowierd to show you what dependencies we need to be injected. Let's do this for the concrete engine class:
public final class RobustMailEngine implements MailEngine {
private final Set<MailService> mailServices;
@Autowired
public RobustMailEngine(final Set<MailService> setMailSerices) {
mailServices = setMailSerices;
}
@Override
public List<Mail> getAllMail() {
return mailServices.stream().map(MailService::getMail).flatMap(List::stream).collect(toList());
}
}
And for the app class:
public final class MailCollectorApp {
private MailEngine engine;
@Autowired
public MailCollectorApp(final MailEngine setEngine) {
engine = setEngine;
}
public String getMail() {
var ret = "No mail found.";
if (!engine.getAllMail().isEmpty()) {
ret = Joiner.on(System.lineSeparator()).join(engine.getAllMail());
}
return ret;
}
//...
}
Now, we need to instruct Spring on how to instantiate those dependencies, which are called beans in spring's world.
Let's create a Spring Configuration Class for creating beans, there are a couple of ways for achiving that. For instance, using Spring's Annotation Based Configuration:
@Configuration
public class DIConfiguration {
@Bean
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
public Set<MailService> getServices() {
return Set.of(new GmailService(), new MicrosoftService());
}
@Lazy
@Bean
public MailEngine getEngine(final Set<MailService> services) {
return new RobustMailEngine(services);
}
}
Another way for creating beans in Spring is marking classes as @Component, which is the way of telling Spring we want this class as a bean. For instance, let's mark our app class as a Component so we can later ask Spring to instantiate it:
@Lazy
@Component
public final class MailCollectorApp {
// ...
}
This will of course be a Lazy Singleton.
Another option configuring Spring is using Spring's XML Based Configuration:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="gmailService" class="info.tomfi.tutorials.mailapp.core.service.GmailService" scope="prototype"/>
<bean id="microsoftService" class="info.tomfi.tutorials.mailapp.core.service.MicrosoftService" scope="prototype"/>
<bean id="getEngine" class="info.tomfi.tutorials.mailapp.engine.RobustMailEngine" lazy-init="true">
<constructor-arg>
<set>
<ref bean="gmailService"/>
<ref bean="microsoftService"/>
</set>
</constructor-arg>
</bean>
<bean id="getMailApp" class="info.tomfi.tutorials.mailapp.MailCollectorApp" lazy-init="true">
<constructor-arg>
<ref bean="getEngine"/>
</constructor-arg>
</bean>
</beans>
Both options will produce the same dependencies. From a Scopes point-of-view... Spring's default scope is Singleton, meaning the RobustMailEngine, combined with the Lazy annotation, will be a Lazy Singleton, meaning our app will have only one instance of RobustMailEngine.
The Set of GmailService and MicrosoftService, on the other end, will be created as new instances for every object who needs them, as we explicitly configured them as Prototype, which is Non-Singleton of course.
Please note, RobustMailEngine is a dependency, it will be injected to whoever needs it, but as we configured earlier, it also needs dependencies for itself (the Set of MailService). Spring will catch that and inject the set of mail services while instantiating the engine.
Let's get back to the to our app and update it to work with Spring:
@Lazy
@Component
public final class MailCollectorApp {
private MailEngine engine;
public MailCollectorApp(final MailEngine setEngine) {
engine = setEngine;
}
public String getMail() {
var ret = "No mail found.";
if (!engine.getAllMail().isEmpty()) {
ret = Joiner.on(System.lineSeparator()).join(engine.getAllMail());
}
return ret;
}
public static void main(final String... args) {
// try (var container = new ClassPathXmlApplicationContext("spring-beans.xml")) {
try (var container = new AnnotationConfigApplicationContext(MailCollectorApp.class, DIConfiguration.class)) {
var app = container.getBean(MailCollectorApp.class);
System.out.println(app.getMail());
}
}
}
Let's analyze what's going on here...
Running the main method will create a Spring's container, which is the context for all dependencies to live in. As we create it with an instance of both MailCollectorApp and DIConfiguration classes, the container will have the following dependencies, beans, configured in it:
As configured, both MailCollectorApp and MainEngine are Lazy Singletons, plus, we configured the Set of MailService as Prototype. That means that at this point, there's nothing instantiated in spring's context. All it has is instructions on how to instantiate.
The next step, asking the container for an instance of MailCollectorApp will accomplish the following:
After preparing the groundwork, Spring will:
We then get our instance MailCollectorApp with everything we need in it, from which we invoke getMail to get all of our mail.
That's it, Spring Context in a nutshell. 😆
Now, Let's test the code...
I'm gonna start by saying, in regards to unit tests, if possible, always prefer not to use di frameworks in unit tests.
Unit tests are about testing small parts, units, of your application. You don't need the overhead of creating the di context, it will probably serve no purpose for you. You would probably be better off just instantiating the subject under test manually.
On the other end, if you writing integration, or acceptance tests, or any other situation when you might need to test your application end-to-end, well, in that case, a good di framework could be your best friend.
That being said, for demonstration purposes only, let's move on to unit tests with di framework.
Please note, as far as I can tell, there isn't a way, not a friendly way, to instantiate an object outside of spring's context lifecycle, and then register it to the context.
Spring creates its instances and doesn't allow any outside interference, I guess there's a good reason for that. Nonetheless, I needed to inject mocks instead of the real mail services maintaining the ability to access them so I can verify their behavior, and the cleanest way I was able to accomplish that, is by having Spring create them for me.
There are other ways to accomplish that, some of them are relevant to Spring Boot and not necessarily to Spring Context, as I mentioned at the start of this post.
My solution was to create a sperate configuration class for testing spring context, having it instantiate the mocks for me, and then just ask for them.
If that's not a testament to how di frameworks are not always the best idea for unit tests, then I don't know what is. Nevertheless, here the work-around configuration class (Don't try this at home 😉):
@Configuration
public class DITestConfiguration {
private MailService gmailServiceMock;
private MailService microsoftServiceMock;
private MailService thirdServiceMock;
public DITestConfiguration() {
gmailServiceMock = mock(MailService.class);
microsoftServiceMock = mock(MailService.class);
thirdServiceMock = mock(MailService.class);
}
@Lazy
@Bean
public MailEngine getEngine(final Set<MailService> services) {
return new RobustMailEngine(Set.of(gmailServiceMock, microsoftServiceMock, thirdServiceMock));
}
public MailService getGmailServiceMock() {
return gmailServiceMock;
}
public MailService getMicrosoftServiceMock() {
return microsoftServiceMock;
}
public MailService getThirdServiceMock() {
return thirdServiceMock;
}
}
Please note the instantiation of the mocks that will be grabbed by the test class:
public final class MailCollectorAppTest {
private MailService gmailServiceMock;
private MailService microsoftServiceMock;
private MailService thirdServiceMock;
private MailCollectorApp sut;
private ConfigurableApplicationContext context;
private Faker faker;
@BeforeEach
public void initialize() {
faker = new Faker();
context =
new AnnotationConfigApplicationContext(MailCollectorApp.class, DITestConfiguration.class);
var confWorkAround = context.getBean(DITestConfiguration.class);
gmailServiceMock = confWorkAround.getGmailServiceMock();
microsoftServiceMock = confWorkAround.getMicrosoftServiceMock();
thirdServiceMock = confWorkAround.getThirdServiceMock();
sut = context.getBean(MailCollectorApp.class);
}
@AfterEach
public void cleanup() {
context.close();
}
@Test
@DisplayName(
"make the services mocks return no mail and validate the return string as 'No mail found'")
public void getMail_noMailExists_returnsNoMailFound() {
willReturn(emptyList()).given(gmailServiceMock).getMail();
willReturn(emptyList()).given(microsoftServiceMock).getMail();
willReturn(emptyList()).given(thirdServiceMock).getMail();
then(sut.getMail()).isEqualTo("No mail found.");
}
@Test
@DisplayName(
"make the services return legitimate mail and validate the return string as expected")
public void getMail_foundMail_returnsExpectedString() {
var mail1 =
GmailImpl.builder()
.from(faker.internet().emailAddress())
.subject(faker.lorem().sentence())
.build();
var mail2 =
MicrosoftImpl.builder()
.from(faker.internet().emailAddress())
.subject(faker.lorem().sentence())
.build();
var mail3 =
MicrosoftImpl.builder()
.from(faker.internet().emailAddress())
.subject(faker.lorem().sentence())
.build();
willReturn(List.of(mail1)).given(gmailServiceMock).getMail();
willReturn(List.of(mail2, mail3)).given(microsoftServiceMock).getMail();
willReturn(emptyList()).given(thirdServiceMock).getMail();
then(sut.getMail().split(System.lineSeparator()))
.containsOnly(mail1.toString(), mail2.toString(), mail3.toString());
}
}
I want to emphasize, this is poor practice, I was better off just testing without Spring, but I wanted this tutorial to show how to do so, for rare cases where there's no better way.
As you can see, all I did was create the container with a DITestConfiguration instance instead of a DIConfiguration instance, exposing three getters to help me workaround the mock injecting issue. Note that's I've added a third mail service, demonstrating how easy it is. 😁
The RobustMailEngine was not mocked, because there was no real reason to do so, but it could have been easily replaced with a mock or a spy.
My test class behaved exactly like my main app, except for the services being mocks instead of real objects.
You can check out the code for this part of the tutorial in Github.
👋 See you in the next part of this tutorial 👋
רד האט היא החברה המובילה בעולם לפתרונות תוכנה מבוססי קוד פתוח לארגוני Enterprise. רד האט מבוססת על כוחה של קהילת הקוד הפתוח בפיתוח ואספקת טכנולוגיות Linux, Cloud, Container, ו-Kubernetes. אנחנו מסייעים ללקוחות לשלב בין יישומי IT חדשים וקיימים, לפתח יישומים רב-ענניים (multi-cloud), לבצע סטנדרטיזציה של מערכת ההפעלה, יחד עם אוטומציה, אבטחה וניהול של סביבות מורכבות.