Spring之整合Junit

Spring整合Junit

package com.lyl;

import com.lyl.config.SpringConfig;
import com.lyl.entity.Account;
import com.lyl.service.AccountService;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import java.util.List;

/**
 * spring整合junit
 *  1.导入spring整合junit的jar
 *  <dependency>
 *             <groupId>org.springframework</groupId>
 *             <artifactId>spring-test</artifactId>
 *             <version>5.0.2.RELEASE</version>
 *  </dependency>
 *  2.使用junit提供的一个注解把原有的main方法替换了,替换成spring提供的,因为junit的test方法是不会自动注入的
 * @ Runwith
 *  3.告知spring的运行器,spring和ioc创建是基于xml还是基于注解
 * @ ContextConfiguration
 *      location:指定xml文件的位置,加上classpath关键字,表示在类路径下
 *      classes:指定注解类所在的位置
 *  当我们使用spring 5.x版本的时候要求junit的jar必须是4.12以上
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = SpringConfig.class)
public class test {
    /**节省这一段
     * ClassPathXmlApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
     *
     * AccountService as = (AccountService) ac.getBean("accountService");
     */
    @Autowired
    private AccountService as;
    /*@Before
    public void init(){
        ac=new ClassPathXmlApplicationContext("bean.xml");
        as =(AccountService) ac.getBean("accountService");
    }*/
    @Test
    public void findAll() {
        List<Account> accounts=as.findAllAccount();
        for (Account account:accounts)
            System.out.println(account);
    }
    @Test
    public void testUpdate() {

    }
    @Test
    public void testFindOne() {
        //ApplicationContext ac=new ClassPathXmlApplicationContext("bean.xml");
        //注解应该使用AnnotationConfigApplicationContext这个实现类,传入配置类的字节码文件
        ApplicationContext ac=new AnnotationConfigApplicationContext(SpringConfig.class);
        AccountService as =(AccountService) ac.getBean("accountService");
        Account account=as.findAccountById(1);
        System.out.println(account);
    }
    @Test
    public void testSave() {

    }
    @Test
    public void findDelete() {

    }
}

当我们想在test下去使用注解@Autowired去给我们注入我们要测试的类的时候,我们就需要进行如下步骤,否则是不会注入bean到spring容器的(原理,略)

  • 1.导入spring整合junit的jar
    这个jar下面有下面讲的Runwith注解的值的一个字节码文件
    SpringJUnit4ClassRunner.class
    这个jar版本要高一点,否则没有这个字节码文件
  <dependency>
             <groupId>org.springframework</groupId>
              <artifactId>spring-test</artifactId>
              <version>5.0.2.RELEASE</version>
  </dependency>
  • 2.使用junit提供的一个注解把原有的main方法替换了,替换成spring提供的,因为junit的test方法是不会将bean自动注入的
    @ Runwith
    属性值填这个 SpringJUnit4ClassRunner.class
  • 3.告知spring的运行器,spring和ioc创建是基于xml还是基于注解
    @ContextConfiguration
    (基于XML) location:指定xml文件的位置,加上classpath关键字,表示在类路径下
    (基于注解)classes:指定注解类所在的位置
    当我们使用spring 5.x版本的时候要求junit的jar必须是4.12以上,否则报错
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值