Test类中不能使用Autowired注入bean
今天下午好好看了下关于Spring的注解问题。
在测试类中使用AutoWired注解一直不能获取到Bean,调用方法时一直报空指针异常。
使用ApplicationContext的getBean方法又能获取到Bean,这证明我们的Bean注解是生效了的,出问题的地方应该就是AutoWired里面。我有在其他类中使用AutoWired试了下,发现能够生效。
问题应该就是处在Test类中,后面找了半天终于找到问题了!!!
在测试类中我自己使用的测试单元是
@RunWith(BlockJUnit4ClassRunner.class)
正确的应该是使用Spring-test里面的测试单元
@RunWith(SpringJUnit4ClassRunner.class)
大家写代码一定要仔细啊!不然多的时间浪费了。
Test包中使用autowired注入提示Could not autowire. No beans of 'xxx' type found.
尝试了网上各种方法,最后发现
将autowired注解换成Resource注解完美解决
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/ssbb1995/article/details/78118038