Spring和SpringMVC父子容器關系所引發的血案
最近在使用工具類實現將數據庫中的數據批量導入到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放到不同的容器中管理。
?
四、後記
?
折騰了一天,終於解決了這個問題,特此記錄一下,-_- 。
Spring和SpringMVC父子容器關系所引發的血案