2

私のSpring構成は次のとおりです。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
                        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
                        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
                        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd">

これは、サーバーがインターネットに接続されている場合に正常に機能します。ただし、アクセスが取り消されると、次のエラーが発生します。

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:クラスパスリソース[spring/applicationContext-service-webapp.xml]からのXMLドキュメントの2行目が無効です。ネストされた例外はorg.xml.sax.SAXParseExceptionです。要素タイプ「http-equiv」に関連付けられた属性「{1}」にはオープンクォートが必要です。

なぜですか?

4

1 に答える 1

1

含まれているスキーマの1つの異なるバージョンがロードされているか、スキーマにアクセス/ロードされていないようです。


更新 pomファイルで重複したアーティファクトを除外すると、問題が解決します。

于 2012-11-17T13:00:46.320 に答える