当前位置: 首页 > 知识库问答 >
问题:

Spring。“SchemaLocation…必须有偶数个URI”

沈弘盛
2023-03-14
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop" 
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:context="http://www.springframework.org/schema/context"

       xsi:schemaLocation="http://www.springframework.org/schema/beans

           http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
           http://www.springframework.org/schema/util 
           http://www.springframework.org/schema/util/spring-util.xsd
           http://www.springframework.org/schema/context/spring-context-3.1.xsd">

<!--            http://www.springframework.org/schema/aop  -->
<!--            http://www.springframework.org/schema/aop/spring-aop.xsd"> -->

    <context:component-scan base-package="myPackage" />

WARN[WrapperSimpleAppMain][XmlBeanDefinitionReader]忽略XML验证警告org.XML.sax.SAXParseException;行号:14;列号:80;schemaLocation:schemaLocation值='http://www.springfr amework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.spri ngframework.org/schema/util/spring-util.xsd
http://www.springfra mework.org/schema/context/spring-context-3.1.xsd'必须有偶数个URI。在com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.CreateSaxParseException(ErrorHandlerWrapper.java:198)

如何解决这个问题对吗?

共有1个答案

经嘉
2023-03-14

您的schemaLocation值的格式应为

namespace-name schema-location [namespace-name schema-location]

你失踪了

http://www.springframework.org/schema/context

之前

http://www.springframework.org/schema/context/spring-context-3.1.xsd
xsi:schemaLocation="
           http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
           http://www.springframework.org/schema/util 
           http://www.springframework.org/schema/util/spring-util-3.1.xsd  
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.1.xsd">
 类似资料:
  • 当我试图从FireStore中读取数据时,它会显示错误。[错误:flutter/lib/ui/ui_dart_state.cc(157)]未处理的异常:PlatformException(错误,无效的文档引用。文档引用必须有偶数个段,但users有1,null)代码为:

  • [错误:flutter/lib/ui/ui_dart_state.cc(157)]未处理的异常:PlatformException(错误,文档引用无效。文档引用的段数必须为偶数,但users为1,为null)

  • model的struct必须有一个pk Beego规定在models里面的struct必须有一个PK,如果没有的话,会提示 github.com/sunnygocms/managementCMS/models.SunnyUserAndGroup need a primary key field 这个是以bee -api 根据sunny_user_and_group这个表自动生成的为例来解释。 原生

  • 我创建了这个类。但我得到了这个错误 函数必须有一个明确的参数列表。尝试添加参数列表 我试过的 升级颤振 颤振医生输出

  • 我想求两个整数之间的偶数奇偶数的个数。以下是我目前所写的内容: 这个很管用。但是,和这两个整数之间的差值可能高达,这意味着类似这样的解决方案是行不通的。是否有一个更有效的,即解决方案来解决这个问题?

  • 问题内容: 正在使用Spring,并且·具有以下定义: ..... 当我的互联网连接断开时,我无法通过tomcat或码头运行我的应用程序。 它给: 有什么建议如何解决吗? 问题答案: 如果正确配置了名称空间且XSD文件位于类路径中,则无需在schemaLocation URL中使用classpath:协议。 Spring doc“ 注册处理程序和模式 ”显示了应如何完成。 在你的情况下,问题可能出