SpringApplicationConfiguration not found: Erroneous spring-boot-starter-test content?

In your release the @SpringApplicationConfiguration annotation no longer exists. The new annotations are :

@RunWith(SpringRunner.class)

@SpringBootTest(classes = YourApplicationMainClass.class)

@WebAppConfiguration

Leave a Comment