Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

applicationContext.xml code like above:

<?xml version="1.0" encoding="UTF-8"?><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 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd" >

the error message like above:

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 5 in XML document from ServletContext resource [/WEB-INF/classes/applicationContext.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'beans'.

so,what's the kind of the question and how to fix the error? thanks advanced!!

share|improve this question
Is this a full content of applicationContext.xml? – Oleg Iavorskyi Apr 6 '11 at 3:53

1 Answer

EDIT

There should be a new line after schema/beans something like this:

xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd" >
share|improve this answer
what's the reason why? just the different between location – Jameswq Apr 6 '11 at 3:17
@Jameswq: I edited my answer, please try and let me know. – anubhava Apr 6 '11 at 3:38
anubhava,thank you for you helping,but i don't understand what the different between you answer and my applicationContext.xml. – Jameswq Apr 6 '11 at 3:47
@Jameswq: You need to ENTER a new line in you applicationContext.xml after http://www.springframework.org/schema/beans to avoid that error. So above text should be in 2 lines not in the same line. – anubhava Apr 6 '11 at 3:51
thank you very very much , i will try it later and tell you the result. – Jameswq Apr 6 '11 at 7:45
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.