org.xml.sax.SAXParseException:cvc-elt.1:找不到元素“beans”的声明;

发布于 2024-09-26 17:59:48 字数 486 浏览 1 评论 0原文

我已经构建了一个简单的 Spring WS (1.5.9),并尝试将其部署到 Glassfish v3。不幸的是,由于上述原因,部署失败。我自己努力解决这个问题,但显然无法解决“bean”元素。

这是我的spring-ws-servlet.xml(bean定义):

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

...bean definitions

</beans>

我也尝试过将schemaLocation设置为spring-beans-3.0.xsd< /code> 具有相同的结果。

我的 WAR 只有一个依赖项,那就是 Spring-WS。

I've built a simple Spring WS (1.5.9) and I'm trying to deploy it to Glassfish v3. Unfortunately the deployment fails for the above reason. I've struggled to resolve the issue myself but it clearly not able to resolve the "bean" element.

Heres me spring-ws-servlet.xml (bean definitions):

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

...bean definitions

</beans>

I've also tried it with the schemaLocation set to spring-beans-3.0.xsd with the same result.

My WAR only has one dependency and that is Spring-WS.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乱世争霸 2024-10-03 17:59:48

您尚未提供模式位置的标准集合,特别是没有提供 beans 模式所需的模式位置。

这是我的一个:

<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"
  xmlns:gate="http://gate.ac.uk/ns/spring"
  xsi:schemaLocation="
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://gate.ac.uk/ns/spring http://gate.ac.uk/ns/spring.xsd
    ">
</beans>

You haven't provided the standard collection of schema locations, particularly not the required schema location for the beans schema.

Here's one of mine:

<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"
  xmlns:gate="http://gate.ac.uk/ns/spring"
  xsi:schemaLocation="
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://gate.ac.uk/ns/spring http://gate.ac.uk/ns/spring.xsd
    ">
</beans>
听你说爱我 2024-10-03 17:59:48

当我从互联网上的另一个文件复制 beans 标签时,也发生了同样的失败,您必须确保在 html 句子之间输入了空格。

    <beans xmlns="http://www.springframework.org/schema/beans"(space)xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"(space)
        xmlns:context="http://www.springframework.org/schema/context"(space)   
      ....
     ">
        </beans>

The same fail was happened to me when I copied the beans tag from another file on internet, you have to secure that you've typped a space between the html sentences.

    <beans xmlns="http://www.springframework.org/schema/beans"(space)xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"(space)
        xmlns:context="http://www.springframework.org/schema/context"(space)   
      ....
     ">
        </beans>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文