天天看點

Spring初始化時異常(Cannot find the declaration of element 'beans' )

今天碰到一個奇怪的問題,spring在初始化xml配置檔案的時候報錯:

Cannot find the declaration of element 'beans'

spring配置檔案原來是這樣寫的:

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2011/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
           

最後google了好幾次才找到原因,需要将Spring的配置檔案修改為:

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans         
 classpath:/org/springframework/beans/factory/xml/spring-beans-2.0.xsd"
	default-lazy-init="true">
           

需要修改“http://”為classpath:/” 。

繼續閱讀