Spring整合junit的配置

Posted 遍唱阳春

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring整合junit的配置相关的知识,希望对你有一定的参考价值。

配置步骤:

1.导入Spring整合Junit的jar(坐标):

 <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-test</artifactId>
          <version>5.0.2.RELEASE</version>
          <scope>test</scope>
      </dependency>

2.使用Junit提供的一个注解@Runwith()把原有的main方法替换成spring提供的,这样就可以创建容器了:

3.告知Spring的运行器,spring的容器创建是基于xml的还是基于注解的,并且说明位置;

@ContextConfiguration

 基于xml:location:指定xml文件的位置,加上classpath关键字,表示在类路径下

 基于注解:classes:指定注解类所在的位置

4.注意!当我们使用spring 5.x版本的时候,要求junit的jar必须是4.12及以上!!!

以上是关于Spring整合junit的配置的主要内容,如果未能解决你的问题,请参考以下文章

Spring整合junit

08-spring整合 junit

spring整合junit问题

Spring整合junit测试

Spring整合junit测试

Java开发Spring之IOC详解第二篇(注解开发JdbcTemplatem模板Junit整合)