Spring因爲web配置致使的spring配置文件找不到的問題的解決方案

在把某項技術整合到Spring中的時候,咱們時常會發現報以下錯誤:

 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'loginController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field:java

查閱了不少方法 都沒有實際的解決 後來才發現是由於spring的配置文件沒有放到web

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>spring

的 <context-param>中形成的:mvc

具體有以下兩種解決方案:app

1.把全部的XML配置文件放到<param-value>中,通常來講XML後面的英文逗號可加也可不加(通常系統能識別):

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  
  <context-param>
    <param-name>contextConfigLocation</param-name>
 
    <param-value>
    classpath:spring-dao.xml,
   classpath:spring-service.xml,
    classpath:springmvc-servlet.xml
    </param-value>

  </context-param>

  

2.用*來匹配有必定相同點的XML文件 並放到<param-value>中,這在必定程度上減小了代碼的冗餘:

 <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  
  <context-param>
    <param-name>contextConfigLocation</param-name>
    
    <param-value>classpath*:spring-*.xml</param-value>
    
  </context-param>

 原理介紹:

1, 在web.xml中定義 contextConfigLocation參數.spring會使用這個參數加載.全部逗號分割的xml.若是沒有這個參數,spring默認加載web-inf/applicationContext.xml文件.spa

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath*:conf/spring/applicationContext_core*.xml,
classpath*:conf/spring/applicationContext_dict*.xml,
classpath*:conf/spring/applicationContext_hibernate.xml,
classpath*:conf/spring/applicationContext_staff*.xml,
classpath*:conf/spring/applicationContext_security.xml
classpath*:conf/spring/applicationContext_modules*.xml
classpath*:conf/spring/applicationContext_cti*.xml
classpath*:conf/spring/applicationContext_apm*.xml
</param-value>
</context-param> 

contextConfigLocation 參數定義了要裝入的 Spring 配置文件。原理說明以下:
、利用ServletContextListener 實現。
Spring 提供ServletContextListener 的一個實現類ContextLoaderListener ,該類能夠做
爲listener 使用,它會在建立時自動查找WEB-INF/ 下的applicationContext.xrnl 文件。因
此,若是隻有一個配置文件,而且文件名爲applicationContext.xml ,則只需在web.xml
文件中增長以下代碼便可:
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
若是有多個配置文件須要載入,則考慮使用<context-para即元素來肯定配置文件的
文件名。因爲ContextLoaderListener加載時,會查找名爲contextConfigLocation的參數。
所以,配置context-param時參數名字應該是contextConfigLocation。
帶多個配置文件的web.xml 文件以下:
<1-- XML 文件的文件頭二〉
<?xml version="l.O" encoding="工80-8859-1"?>
< 1-- web.xm1 文件的DTD 等信息一〉
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems. 工口c.//DTD Web Application 2.3//EN"
''http://java.sun.com/dtd/web-app_2_3.dtd''>
<web-app>
<!一肯定多個配置文件>
<context-param>
<1-- 參數名爲contextConfigLocation…〉
<param-name>contextConfigLocation</param-name>
<!一多個配置文件之間以,隔開二〉
<param-value>/WEB-工NF/daoContext.xml./WEB-INF/application
Context.xml</param-value>
</context-param>
<!-- 採用listener建立Applicat工onContext 實例-->
<listener>
<listener-class>org.spr工ngframework.web.context.ContextLoader
Listener</listener-class>
</listener>
</web-app>
若是沒有contextConfigLocation 指定配置文件,則Spring 自動查找application
Context. xrnl 配置文件。若是有contextConfigLocation,則利用該參數肯定的配置文件。
該參數指定的一個字符串, Spring 的ContextLoaderListener 負責將該字符串分解成多個
配置文件,逗號","、空格" "及分號";"均可做爲字符串的分割符。
若是既沒有applicationContext. xrnl 文件,也沒有使用contextConfigLocation參數確
定配置文件,或者contextConfigLocation肯定的配置文件不存在。都將致使Spring 沒法
加載配置文件或沒法正常建立ApplicationContext 實例

配置一個spring爲加載而設置的servlet能夠達到一樣效果.
採用load-on-startup Servlet 實現。
Spring 提供了一個特殊的Servllet 類: ContextLoaderServlet。該Servlet 在啓動時,會
自動查找WEB-IN日下的applicationContext. xml 文件。
固然,爲了讓ContextLoaderServlet 隨應用啓動而啓動,應將此Servlet 配置成
load-on-startup 的Servleto load-on-startup 的值小一點比較合適,由於要保證Application
Context 優先建立。若是隻有一個配置文件,而且文件名爲applicationContext. xml ,則在
web.xml 文件中增長以下代碼便可:
<servlet>
<servlet-name>context</servlet口-arne>
<servlet-class>org.springframework.web.context.ContextLoaderServlet</
servlet-class>
<load-on-startup>l</load-o 口-startup>
</servlet>

。帶多個配置文件的web且nl 文件以下:
<!-- XML 文件的文件頭-->
<?xml version="1.0" encoding="工SO-8859-1"?>
<! -- web.xml 文件的DTD 等信息→
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems , 工口c.//DTD Web Application 2.3//EN"
''http://java.sun.com/dtd/web-app_2_3.dtd''>
<web-app>
<'一肯定多個配置文件一>
<context-param>
<!-- 參數名爲contextConfigLocation-->
<param-name>contextConfigLocation</param-name>
<!-- 多個配置文件之間以,隔開一〉
<param-value>/WEB-工NF/daoContext.xml, !WEB-工NF/applicationContext.
xml</param-value>
</context-param>
<!一採用load-on-startup Servlet 建立Applicat工onContext 實例一〉
<servlet>
<servlet-narne>context</servlet-narne>
<servlet-class>org.springframework.web.context.ContextLoader
Servlet</servlet-class>
<!一下面值小一點比較合適,會優先加載一〉
<load-on-startup>l</load-on-startup>
</servlet>
</web-app>


2, 使用匹配符

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext*.xml</param-value>
</context-param>

比 如說用到Hibernate,則把hibernate相關的配置放在applicationContext-hibernate.xml這一個文件,而一 些全局相關的信息則放在applicationContext.xml,其餘的配置相似.這樣就能夠加載了,沒必要寫用空格或是逗號分開! 


3, 若是使用struts加載多個spring配置文件.下面這個配置的其實也是contextConfigLocation變量.

struts-config.xml裏面加這個
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" 
value="/WEB-INF/applicationContext.xml,
/WEB-INF/action-servlet.xml,,,,,,,"/>

4,若是是非j2ee應用直接程序加載.

ApplicationContext act = new ClassPathXmlApplicationContext(new String[]{"bean1.xml","bean2.xml"});

BeanDefinitionRegistry reg = new DefaultListableBeanFactory();

XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(reg);

reader.loadBeanDefinitions(new ClassPathResource("bean1.xml"));

reader.loadBeanDefinitions(new ClassPathResource("bean2.xml"));

hibernate

BeanFactory bf = (BeanFactory)reg;xml

相關文章
相關標籤/搜索