BAEL 3234 - Add missing code snippets from the Spring Properties article (#9280)

This commit is contained in:
sasam0320
2020-05-13 11:09:41 +02:00
committed by GitHub
parent 856b818a2f
commit 020837fa2f
4 changed files with 25 additions and 4 deletions
@@ -6,7 +6,7 @@ import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
import static org.assertj.core.api.Assertions.assertThat;
@SpringJUnitConfig(locations = "classpath:configForProperties.xml")
@SpringJUnitConfig(locations = {"classpath:configForProperties.xml", "classpath:configForDbProperties.xml"})
public class MultiplePropertiesXmlConfigIntegrationTest {
@Value("${key.something}") private String something;