Skip to content
Advertisement

Why this error trying to unit test an entire Spring Batch Job? No qualifying bean of type ‘org.springframework.batch.core.Job’ available

I am working on a Spring Batch application. Untill now I was able to unit test something like service methods and something like this (as done in every Spring Boot application).

Now I am trying to follow this tutorial in order to test an entire job from my unit test class (basically I want to execute a test method that perform a Job): https://www.baeldung.com/spring-batch-testing-job

This is my JUnit test class, in this case works fine and I correctly can test my services method using the @SpringBootTest annotation:

JavaScript

As you can see in the previous code I first inject my two Job objects defined:

JavaScript

These Job are defined as bean into the class that configures my Spring Batch jobs and steps, basically I have these 2 beans:

JavaScript

and

JavaScript

Then in the previous test class there is this test method that should test the entire flow of the previous updateNotaryDistrictsJob job:

JavaScript

The problem is that doing in this way when I run this test method I am obtaining this exception in my stack trace:

JavaScript

It seems that it can’t recognize what of my two Job beans must be used.

Why? What is wrong? What am I missing? How can I try to fix this issue?

Advertisement

Answer

The JobLauncherTestUtils that is provided by @SpringBatchTest expects that there is only a single bean of type Job in the test context. This is also documented in the java doc of the annotation.

If you use @SpringBootTest and full component scanning such that more than one job bean is picked up, @SpringBatchTest does not work out of the box.

The easiest solution is probably to remove @SpringBatchTest and to start the jobs with the jobLauncher. Alternatively, you can split your tests across multiple test classes and use test contexts that only contain a single job bean, respectively.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement