您好,登錄后才能下訂單哦!
最近在使用工具類實現將數據庫中的數據批量導入到Solr索引庫的時候,使用單元測試提示:
java.lang.IllegalStateException: Failed to load ApplicationContext
在解決問題的過程中,偶然發現了Spring和SpringMVC是有父子容器關系的,正是由于這種父子容器關系的存在,導致了問題的存在。
下面是我的測試類:
public class SolrUtil {
@Autowired
private GoodsDao goodsDao;
@Autowired
private SolrTemplate solrTemplate;
//實現將數據庫中的數據批量導入到Solr索引庫中
@Test
public void importGoodsData() {
List<Goods> list = goodsDao.findAll();
System.out.println("===數據庫中的數據===");
for(Goods goods : list) {
System.out.println(goods.getId()+" "+goods.getTitle());
}
solrTemplate.saveBeans(list);
solrTemplate.commit();
System.out.println("===結束===");
}
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring/*.xml");
// context = new ClassPathXmlApplicationContext("classpath:spring/*.xml");
SolrUtil solrUtil = (SolrUtil) context.getBean("solrUtil");
solrUtil.importGoodsData();
}
}
?
我開始沒有使用junit進行單元測試,直接執行的main方法。注意我加載的配置文件,先看下我的目錄結構:
?
?
可以看出我把SpringMVC的配置文件也加載進來了。一開始我以為是jar包沖突,換了jar包的版本,后來發現tomcat啟動正常,執行其他對數據庫的操作也沒有問題,我就排除了這方面的問題。然后我突然想到可以用junit進行單元測試,于是有了下面的代碼
?
@Component
@ContextConfiguration(locations="classpath:spring/*.xml")
@RunWith(SpringJUnit4Cla***unner.class)
可以看到我使用了@ContextConfiguration注解,這個注解的作用是啥呢?
@ContextConfiguration Spring整合JUnit4測試時,使用注解引入多個配置文件
這時候我就考慮到了是不是通配符寫錯的原因呢?于是有了下面這行代碼
@ContextConfiguration(locations= {"classpath:spring/spring-solr.xml","classpath:spring/spring-service.xml","classpath:spring/spring-dao.xml","classpath:spring/spring-shiro.xml",})
碰巧我沒有加載SpringMVC的配置文件,于是問題就解決了。
?在Spring整體框架的核心概念中,容器是核心思想,就是用來管理Bean的整個生命周期的。Spring和SpringMVC的容器存在父子關系,即Spring是父容器,SpringMVC是其子容器,子容器可以訪問父容器的對象,父容器不能訪問子容器的類。另外Spring會把使用了@Component注解的類,并且將它們自動注冊到容器中。這也是我們為什么不在Spring容器管理controller的原因,即:一定要把不同的bean放到不同的容器中管理。
?
?
折騰了一天,終于解決了這個問題,特此記錄一下,-_-
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。