我被困在这一段时间了。我一直在开发一个gwt + spring后端java项目。我的项目是带有GWT项目的结构和另一个用于spring服务的java项目等等。每个项目都包含各自的spring-config文件。如果我要使用,试图加载弹簧配置
tx:annotation-driven
我不断得到以下内容。
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'.
应该提到我正在使用google插件进行eclipse在sts内的gwt容器中部署。
我的spring-servlet命名空间开始如此
<?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"/>
我经历了很多帖子以了解它但未能解决问题。
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
并键入架构位置。
感谢任何帮助或指示!
答案 0 :(得分:0)
对于在包含STS和maven的环境中遇到类似问题的其他人。确保将正确的jar添加到pom.xml中,然后更新ur依赖项;刷新你的工作区;关闭项目并使用-clean选项重新打开或重新启动STS。以上之一将使它适合您。 HTH