Spring錯誤——Spring xml注釋——org.xml.sax.SAXParseException; lineNumber: 24; columnNumber: 10; cvc-complex-type.2.3: 元素 'beans' 必須不含字符 [子級], 因為該類型的內容類型為“僅元素”。


  • 背景:配置spring xml,注釋xml中文件元素
  • 錯誤:
    Caused by: org.xml.sax.SAXParseException; lineNumber: 24; columnNumber: 10; cvc-complex-type.2.3: 元素 'beans' 必須不含字符 [子級], 因為該類型的內容類型為“僅元素”。
        at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:198)
        at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.error(ErrorHandlerWrapper.java:134)
        at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:437)
        at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:368)
        at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:325)
        at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator$XSIErrorReporter.reportError(XMLSchemaValidator.java:453)
        at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.reportSchemaError(XMLSchemaValidator.java:3232)
        at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.elementLocallyValidComplexType(XMLSchemaValidator.java:3195)
        at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.elementLocallyValidType(XMLSchemaValidator.java:3155)
        at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.processElementContent(XMLSchemaValidator.java:3057)
  • 出現原因:在spring*.xml中注釋使用//,被認為是字符串
    <bean id="InjectionServiceImpl" class="com.jing.spring.bean.InjectionServiceImpl">
            <property name="injectionDao" ref="injectionDao"></property>
        </bean>
        <bean id="injectionDao" class="com.jing.spring.bean.InjectionDaoImpl"></bean>//??????不懂  程序中是引用接口 為什么卻要把實現類注入?
  • 修改方法:注釋應該使用<!--   -->
    <bean id="InjectionServiceImpl" class="com.jing.spring.bean.InjectionServiceImpl">
            <property name="injectionDao" ref="injectionDao"></property>
        </bean>
        <bean id="injectionDao" class="com.jing.spring.bean.InjectionDaoImpl"></bean><!--??????不懂  程序中是引用接口 為什么卻要把實現類注入-->
  • Next


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM