2

登録ページでSpring検証を適用しましたが、次のエラーがAppEngineサーバーのサーバーログに表示されます。

 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名前空間プレフィックスがありません。

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

beansプレフィックスとして使用します。

実際には、beans名前空間をデフォルトのXML名前空間として使用しmvc、明示的な名前空間を作成することをお勧めします。

于 2012-09-03T09:28:15.307 に答える
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 に答える