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

前端 未结 3 1819
[愿得一人]
[愿得一人] 2020-12-24 03:05

Getting a compilation error in Maven:

[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] --------------         


        
3条回答
  •  有刺的猬
    2020-12-24 03:58

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

    @RunWith(SpringRunner.class)
    
    @SpringBootTest(classes = YourApplicationMainClass.class)
    
    @WebAppConfiguration
    

提交回复
热议问题