我已经试着解决这个问题好几个小时了。当我运行我的代码时,我得到一个错误,说:
cvc复杂类型.2.4.a:发现以“{”之一的元素“bean”开头的内容无效http://www.springframework.org/schema/context“:包括筛选器,”http://www.springframework.org/schema/context应为“:排除筛选器}”。
我已经到处寻找答案,一些建议是应该确保使用正确的版本。我在xml中使用与pom文件中相同的版本。(顺便说一句,我正在将maven与eclipse一起使用)。
有什么问题的建议吗?
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.7.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.7.xsd">
<context:component-scan base-package="org.mywebbapp.filemanagement">
<bean
class="org.springframework.beans.factory.config.ServiceLocatorFactoryBean"
id="FileStoreFactory">
<property name="FileStore"
value="org.mywebbapp.filemanagement.FileStoreFactory">
</property>
</bean>
<alias alias="FH" name="FileHandler" />
</context:component-scan>
</beans>
<代码>
尝试:
<context:component-scan base-package="org.mywebbapp.filemanagement"/>
<bean class="org.springframework.beans.factory.config.ServiceLocatorFactoryBean"
id="FileStoreFactory">
<property name="FileStore"
value="org.mywebbapp.filemanagement.FileStoreFactory">
</property>
</bean>
<alias alias="FH" name="FileHandler" />
我刚开始使用spring,我现在正在使用Spring4 一旦将war部署到JCS-SaaS(云)中,我将得到以下错误: org.springframework.beans.factory.XML.xmlBeanDefinitionStoreException:类路径资源[pepsiservlet-context.XML]的XML文档中的第33行无效;嵌套异常是org.xml.sax.SAXPars
http://www.mulesoft.org/schema/mule/ee/dw http://www.mulesoft.org/schema/mule/ee/dw/current/dw.xsd 但我还是找不到解决办法。
我的架构是: XML文档: 我得到了一个异常,因为XML文档有错误:true cvc complex type。2.4。a: 发现以元素“create\u date”开头的内容无效。应为{create\u Date}之一。 有人能帮我吗?
需要“{”http://www.springframework.org/schema/beans“:meta,”h ttp://www.springframework.org/schema/beans“:constructor-arg,”http://www.springframework.org/schema/beans“:property,”http://www.springframework
我正在使用eclipse版本:NEON.3发行版(4.6.3)和Tomcat(V8.5)来进行Java(JDK1.8)编程。 我试图解决的问题 下面是web.xml中的代码 错误显示在前面的标记上。 我可以做什么来解决eclipse错误?
我有一个XML文件需要用XSD文件验证,但是当我想用XSD文件验证我XML时却出现了这个错误 CVC-Complex-Type2.4.a:发现以元素“ClientData”开头的内容无效。应为“”之一。行“2”,列“27”。 这是我的XML文件 我不知道是什么问题...你能告诉我是什么问题吗?