码迷,mamicode.com
首页 > 编程语言 > 详细

Spring 整合 Junit

时间:2020-07-13 09:32:04      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:spring   路径   配置   classpath   jar   文件的   count   ati   导入   

一、导入jar包

技术图片

二、使用@RunWith 注解替换原有运行器 [main()]

  /** 
   *
  * @Company http://www.ithiema.com  
  * @Version 1.0  */ 
  @RunWith(SpringJUnit4ClassRunner.class) 
  public class AccountServiceTest { }

三、使用@ContextConfiguration 指定 spring 配置文件的位置

  /** 
   * @ContextConfiguration 注解:  
          locations 属性:用于指定配置文件的位置。如果是类路径下,需要用 classpath:表明  
          classes 属性:用于指定注解的类。当不使用 xml 配置时,需要用此属性指定注解类的位置 
  * @Company http://www.ithiema.com  
  * @Version 1.0  
  */ 
  @RunWith(SpringJUnit4ClassRunner.class) 
  @ContextConfiguration(locations= {"classpath:bean.xml"}) 
  public class AccountServiceTest { }

Spring 整合 Junit

标签:spring   路径   配置   classpath   jar   文件的   count   ati   导入   

原文地址:https://www.cnblogs.com/jock766/p/13291264.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!