Spring中使用Junit,测试类中对象自动装配失败

测试类中对象自动装配失败

1.实例

测试类代码:

public class NoticeTest {
    // 这里自动装配失败
    @Autowired
    NoticeService noticeService;

    @Test
    public void getListTest(){
        // 这里可以正常实例化
        // NoticeService noticeService = new NoticeServiceImpl();

        // 这里出现noticeService空指针
        List<PrimaryJob> primaryJobList = noticeService.jobNoticeList();

        System.out.println(primaryJobList.size());
    }
}

NoticeService实现类代码:

@Service
public class NoticeServiceImpl implements NoticeService {

    private final Logger logger = LoggerFactory.getLogger(NoticeServiceImpl.class);

    @Autowired
    NoticeDao noticeDao;

    @Override
    public List<PrimaryJob> jobNoticeList() {

        List<PrimaryJob> primaryJobList = null;
        try {
            primaryJobList = noticeDao.jobNoticeList();
        } catch (Exception e) {
            e.printStackTrace();
            logger.error("查询重点工单失败,发送短信异常!");
            return null;
        }
        return primaryJobList;
    }
}

2.异常

java.lang.NullPointerException
	at com.dq.dao.NoticeTest.getListTest(NoticeTest.java:28)  // noticeService调用方法那一行
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
	at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
	at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
	at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
	at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
	at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
	at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

3.解决方法

测试类加上注解

// @RunWith注解表示运行在Spring容器中,包括controller,service,dao等
@RunWith(SpringJUnit4ClassRunner.class)
// 这里表示加载配置文件
@ContextConfiguration({"classpath:spring-mybatis.xml","classpath:spring-mvc.xml"})

如果没有加上这两个注解说明,测试类没有运行在Spring容器中,自动装配noticeservice对象就会失败了。

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
Spring JUnit 注解测试是一种基于 Spring 框架的单元测试方法,通过使用注解来实现依赖注入、AOP、事务控制等功能,从而方便地进行单元测试。 下面是 Spring JUnit 注解测试常用的注解及其作用: 1. @RunWith(SpringJUnit4ClassRunner.class):指定运行测试SpringJUnit4ClassRunner,该会创建 Spring 的上下文环境,并自动加载指定的配置文件或配置。 2. @ContextConfiguration:指定 Spring 的配置文件或配置,用于创建 Spring 的上下文环境。 3. @Autowired:自动装配 Spring 容器的 Bean,可以省略 setter 方法。 4. @Transactional:在测试方法添加该注解可以实现事务控制,测试方法执行完成后自动回滚事务。 5. @Test:用于标记测试方法。 下面是一个简单的 Spring JUnit 注解测试的例子: ```java @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = AppConfig.class) @Transactional public class UserServiceTest { @Autowired private UserService userService; @Test public void testAddUser() { User user = new User(); user.setUsername("test"); user.setPassword("123456"); userService.addUser(user); User addedUser = userService.getUserByName("test"); Assert.assertEquals("test", addedUser.getUsername()); } } ``` 在该例子,@RunWith 指定了运行测试SpringJUnit4ClassRunner,@ContextConfiguration 指定了需要加载的配置 AppConfig,@Transactional 用于进行事务控制,@Autowired 实现了依赖注入,@Test 标记了测试方法。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值