美文网首页
Spring整合junit

Spring整合junit

作者: dillqq | 来源:发表于2019-11-10 09:41 被阅读0次

    步骤1:导入spring整合junit的jar包(坐标)

    <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>5.2.0.RELEASE</version>
    <scope>test</scope>
    </dependency>
    

    步骤2:使用junit提供的注解把原有的main方法替换了,替换成Spring提供了。在测试类上加如下

    @RunWith(SpringJUnit4ClassRunner.class)
    

    步骤3:告知容器配置是注解还是xml的

    使用注解创建

    @ContextConfiguration(classes = Configurtion.class)
    

    使用xml创建

    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(locations = "classpath:bean.xml")
    

    相关文章

      网友评论

          本文标题:Spring整合junit

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