测试类报错
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
解决方法一
把启动类和测试类放到相同的包下 如下图正确的包为com.zmq.spzx.manager
解决方法二
给测试类注解加上启动类@SpringBootTest(classes = ManagerApplication.class)