需要“{”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.org/schema/beans“:限定符,”http://www.springframework.org/schema/beans“:lookup-method,”http://www.springframework.org/schema/beans“:replaced-method,
Tomcat显示我上面的错误
下面给出了我的spring-servlet.xml。我使用的是SpringFramework的.3.11.Release版本。
<?xml version="1.0" encoding="UTF-8"?>
<beans:bean xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:beans="http://www.springframework.org/schema/beans"
xsi:schemaLocation="
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd">
<context:component-scan base-package="in.project.*" />
<annotation-driven/>
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/views/"/>
<beans:property name="suffix" value=".jsp"/>
</beans:bean>
</beans:bean>
xml应用程序上下文的根实体是
,而不是
。所以你最后可能会
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:beans="http://www.springframework.org/schema/beans"
xsi:schemaLocation="
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd">
...
</beans:beans>
没有测试过的是但应该工作。希望能有所帮助。
我正在使用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文件 我不知道是什么问题...你能告诉我是什么问题吗?
我不知道是什么造成了这个错误。 请帮我修正这个错误。 CVC-complex-type2.4.a:发现以元素“init-param”开头的内容无效。“http://java.sun.com/XML/ns/javaee”:模块-名称、“http://java.sun.com/XML/ns/javaee”:描述、“http://java.sun.com/XML/ns/javaee”:显示-名称、“ht
子xsd为: 我得到的确切例外是: org.xml.sax.SAXParseException;行号:1;列号:1682;CVC-Complex-Type2.4.a:发现以元素“MarkUplisturi”开头的内容无效。应为“{MarkupDeleteURI}”之一.
我刚开始使用spring,我现在正在使用Spring4 一旦将war部署到JCS-SaaS(云)中,我将得到以下错误: org.springframework.beans.factory.XML.xmlBeanDefinitionStoreException:类路径资源[pepsiservlet-context.XML]的XML文档中的第33行无效;嵌套异常是org.xml.sax.SAXPars
在eclipse中编辑applicationContext.xml时,下面的内容 引发错误: 我在谷歌上搜索了错误,有些地方说订单很重要…我尝试在bean中重新排列项,但错误仍然存在。 怎么啦?