2

我在我的注册页面中应用了弹簧验证。但以下错误显示在我的应用引擎服务器的服务器日志中。

 javax.servlet.UnavailableException: 
    org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:
    Line 22 in XML  document from ServletContext resource 
    [/WEB-INF/spring/appServlet/servlet-context.xml] is invalid; 
    nested exception is org.xml.sax.SAXParseException;
    lineNumber: 22; columnNumber: 30; 
    cvc-complex-type.2.4.c: The matching wildcard is strict, 
    but no declaration can be found for element 'property'.

我的代码如下:

<?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:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd >


    <beans:bean name="/register" class="com.my.registration.NewUserRegistration">
        <property name="validator">
            <bean class="com.my.validation.UserValidator" />
        </property>
        <beans:property name="formView" value="newuser"></beans:property>
        <beans:property name="successView" value="home"></beans:property>
    </beans:bean>
    <beans:bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

</beans:beans>
4

2 回答 2

1

您的文档的默认 XML 命名空间是http://www.springframework.org/schema/mvc,因此您应该为来自其他命名空间的所有元素使用命名空间前缀,包括来自http://www.springframework.org/schema/beans命名空间的元素:

<beans:property name="validator">
    <beans:bean class="com.my.validation.UserValidator" />
</beans:property>

或者,您可以配置http://www.springframework.org/schema/beans为默认命名空间:

xmlns = "http://www.springframework.org/schema/beans"

mvc显然,在这种情况下,如果有的话,您需要为命名空间中的元素使用命名空间前缀。

也可以看看:

于 2012-09-03T09:30:17.547 回答
1

这没有适当的 XML 命名空间前缀:

<property name="validator">
  <bean class="com.my.validation.UserValidator" />
</property>

用作beans前缀。

实际上我建议使用beans命名空间作为默认的 XML 命名空间并创建mvc一个显式的命名空间。

于 2012-09-03T09:28:15.307 回答