java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @Context
启动后报错:由于在测试类中没有指定@SpringBootConfiguration的类,所以@SpringBootTest注解无法找到@SpringBootConfiguration类,从而引发了这个异常。为了解决这个问题,你需要在@SpringBootTest注解中指定你的SpringBoot应用的主启动类。例如: