org.xml.sax.SAXParseException:cvc-elt.1:找不到元素“beans”的声明;
我已经构建了一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尚未提供模式位置的标准集合,特别是没有提供 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 标签时,也发生了同样的失败,您必须确保在 html 句子之间输入了空格。
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.