我已经尝试了另一个看起来类似的问题的解决方案,但我无法得到它。 我正在配置spring dispatcher servlet。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<bean class="org.springframework.web.servlet.view.tiles2.TilesViewResolver"></bean>
<bean class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
<property name="definitions">
<list>
<value>/WEB-INF/views/views.xml</value>
</list>
</property>
</bean>
<context:component-scan base-package="com.mkyong.controller" />
</beans>
但是,它总是抛出异常
org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 18 in XML document from ServletContext resou
rce [/WEB-INF/mvc-dispatcher-servlet.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 18;
columnNumber: 20; cvc-complex-type.2.3: Element 'list' cannot have character [children], because the type's content typ
e is element-only.
我在这里有疑问,当涉及到模式版本它与我们在pom.xml文件中指定的相同时,我在pom.xml中有以下元素
<properties>
<jdk.version>1.7</jdk.version>
<spring.version>4.1.1.RELEASE</spring.version>
<jstl.version>1.2</jstl.version>
<junit.version>4.11</junit.version>
<!-- <logback.version>1.0.13</logback.version> -->
<jcl-over-slf4j.version>1.7.5</jcl-over-slf4j.version>
</properties>
答案 0 :(得分:0)
我有一天遇到同样的问题,我认为这个错误的主要原因是使用了一个关键词或没有被删除的表达。例如:
框架期望:
<list>
<value>VALUE_EXPRESSION</value>
</list>
但你这样做:
<list>
<value>VALUE_EXPRESSION</value>sss
</list>
之后的 sss 是非法的,不是预期的。
或者,违反其xsd文件中描述的主要规则的任何其他内容。
希望这有帮助。