美文网首页
Spring 5中使用junit

Spring 5中使用junit

作者: 寂川_b645 | 来源:发表于2019-03-03 17:24 被阅读0次

    1.在程序中引入spring-test.jar

    BE5Z9~M(FHSEZA`DI_I)1VV.png

    2.在具体的测试类上添加注解

    (D20{~O2Y4_D9NXZYJGXS7N.png
    • 注:@RunWith:用于指定junit运行环境,是junit提供给其他框架测试环境接口扩展,为了便于使用spring的依赖注入,spring提供了org.springframework.test.context.junit4.SpringJUnit4ClassRunner作为Junit测试环境
      @ContextConfiguration({"classpath:applicationContext.xml","classpath:spring/buyer/applicationContext-service.xml"})
      导入配置文件,这里我的applicationContext配置文件是根据模块来分类的。如果有多个模块就引入多个“applicationContext-service.xml”文件。如果所有的都是写在“applicationContext.xml”中则这样导入:
      @ContextConfiguration(locations = "classpath:applicationContext.xml")

    相关文章

      网友评论

          本文标题:Spring 5中使用junit

          本文链接:https://www.haomeiwen.com/subject/xuviuqtx.html