STS + gwt + spring-config 文件 + tx:注释命名空间
我已经被困在这个问题有一段时间了。我一直在开发一个gwt + spring后端java项目。我的项目是由一个 GWT 项目和另一个用于 spring 服务的 java 项目等组成的。每个项目都包含各自的 spring-config 文件。当我尝试加载弹簧配置时,如果我要使用 tx:annotation-driven
我不断得到以下信息。 org.xml.sax.SAXParseException:schema_reference.4:无法读取模式文档“http://www.springframework.org/schema/tx/spring-tx-3.0.xsd”,因为1)找不到文件; 2)文档无法读取; 3)文档的根元素不是
cvc-complex-type.2.4.c:匹配通配符严格,但找不到元素'tx的声明:annotation-driven'.
应该提到我正在使用 eclipse 的 google 插件部署在 sts 内的 gwt 容器中。
我的 spring-servlet 命名空间是这样开始的
我已经阅读了很多帖子来理解它,但未能解决问题。 a) 尝试将架构导入 xml-catalog 使用 : jar:file:path/to/spring-framework-3.0.5.RELEASE/dist/org.springframework.transaction-3.0.5.RELEASE.jar!/org/springframework/transaction/config/spring-tx- 3.0.xsd 键为 http://www.springframework.org/schema/context/spring-context-3.0.xsd
并键入架构位置。
感谢任何帮助或指示!
I have been stuck at this for a while. I have been developing a gwt + spring backend java project. My project is structure with a GWT project and another java project for spring services and so on. Each project contains their respective spring-config files. while trying to load the spring configs if i were to usetx:annotation-driven
i get the following continuously.org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 'http://www.springframework.org/schema/tx/spring-tx-3.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'tx:annotation-driven'.
should mention i am deploying in the gwt container inside sts using google plugin for eclipse.
my spring-servlet namespace begins as so
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="h ttp://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="h ttp://www.springframework.org/schema/aop"
xmlns:context="h ttp://www.springframework.org/schema/context"
xmlns:p="h ttp://www.springframework.org/schema/p"
xmlns:util="h ttp://www.springframework.org/schema/util"
xmlns:tx="h ttp://www.springframework.org/schema/tx"
xsi:schemaLocation="h ttp://www.springframework.org/schema/aop h ttp://www.springframework.org/schema/aop/spring-aop-3.0.xsd
h ttp://www.springframework.org/schema/beans h ttp://www.springframework.org/schema/beans/spring-beans-3.0.xsd
h ttp://www.springframework.org/schema/util h ttp://www.springframework.org/schema/util/spring-util-3.0.xsd
h ttp://www.springframework.org/schema/tx h ttp://www.springframework.org/schema/tx/spring-tx-3.0.xsd
h ttp://www.springframework.org/schema/context h ttp://www.springframework.org/schema/context/spring-context-3.0.xsd">
<tx:annotation-driven transaction-manager="transactionManager"/>
I have gone through a lot of posts to understand it but have not been able to solve the issue.
a) Tried to import the schema into the xml-catalog
using :jar:file:path/to/spring-framework-3.0.5.RELEASE/dist/org.springframework.transaction-3.0.5.RELEASE.jar!/org/springframework/transaction/config/spring-tx-3.0.xsd
with key as http://www.springframework.org/schema/context/spring-context-3.0.xsd
and type as schema location.
Appreciate any help or pointers !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于在包含 STS 和 Maven 的环境中面临类似问题的其他人。确保您已将正确的 jar 添加到您的 pom.xml 中,然后更新您的依赖项;刷新您的工作空间;关闭项目并使用 -clean 选项重新打开或重新启动 STS。上述其中一项将使其适合您。
华泰
For others who face similar problems in an environment which includes STS and maven. Make sure you have the correct jar added to your pom.xml and then either update ur dependencies ; refresh your workspace ; close your project and reopen or restart STS with -clean option. One of the above will make it work for you.
HTH