欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

Junit写法及与spring整合过程详解

时间:2021-01-15 11:15:39|栏目:JAVA代码|点击:

junit之前的写法:

//在Before中注入service类
private IUserService userService;
  @Before
public void setUp() throws Exception {
//使用xml的方式
  ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
//使用注解的方式
  ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfiguration.class);
userService = applicationContext.getBean(IUserService.class);
 }

Spring与junit整合:

  不需要手动创建Spring容器, 自动把bean注入到测试类

1、导入spring-test的依赖, 需要junit

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

2、在测试类使用spring-test的注解

@RunWith(class)

@ContextConfiguration(指定配置文件)

//测试类运行的环境,在spring环境下运行,在测试类, 注入Spring容器的bean
@RunWith(SpringJUnit4ClassRunner.class)
//在创建spring容器时,指定加载哪个配置文件 - - 相当于之前的手动获取对象
@ContextConfiguration("classpath:applicationContext.xml")
public class UserServiceImplTest {

  @Autowired //注入IUserService
  private IUserService userService;
  
  @Test
  public void testFindUserById() {
    userService.findUserById(2);
  }

上一篇:基于MyBatis XML配置方法(全面了解)

栏    目:JAVA代码

下一篇:java使用Apache工具集实现ftp文件传输代码详解

本文标题:Junit写法及与spring整合过程详解

本文地址:http://www.codeinn.net/misctech/45736.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有