私はしばらくこれで立ち往生しています。私はgwt+springbackendjavaプロジェクトを開発してきました。私のプロジェクトは、GWTプロジェクトとSpringServicesなどの別の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'.
Eclipse用のgoogleプラグインを使用してsts内のgwtコンテナーにデプロイしていることに言及する必要があります。
私の春サーブレット名前空間はそのように始まります
<?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"/>
私はそれを理解するために多くの投稿を通過しましたが、問題を解決することができませんでした。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
a): with keyasおよびtypeasスキーマの場所を使用して、スキーマをxml-catalogにインポートしようとしました
http://www.springframework.org/schema/context/spring-context-3.0.xsd
。
ヘルプやポインタに感謝します!