1.测试运行环境:通过@RunWith 和 @SpringBootTest启动spring容器。
@RunWith(SpringRunner.class),让测试运行于Spring测试环境
@SpringBootTest(classes = {RouteManageApplication.class})替代了spring-test中的@ContextConfiguration注解,目的是加载ApplicationContext,启动spring容器。
2.@Slf4j注解直接使用log对象,简化了一行代码。。。原来使用的就是logger.info("");
这样的代码,现在就可以使用log.info("")