Skip to content
Advertisement

How do I get a SpringBatch Integration test to load my application properties?

I have the following Spring Batch test in my src/test/java:

JavaScript

I define my test/resources/application-local-test.yml:

JavaScript

and in my main application, a SpringBatch Configuration:

JavaScript

When I try to run the integration test my application-local-test.yml is not getting picked up:

JavaScript

What am I doing wrong?

Advertisement

Answer

I ran into the same situation that I cannot load the application.yaml while using @SpringBatchTest to write an integration test.

I ended up adding @SpringBootTest to solve the problem.

According to the document, @SpringBatchTest register beans like JobLauncherTestUtils, JobRepositoryTestUtils…etc for the test.

However if we want to enable spring boot functionalities like loading application properties, adding @SpringBootTest seems to be a way. (document)

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