私はSpring 3.0でswingプロジェクトを開発しており、Eclipse IDEを使用しています。プロジェクトはIDEで検索されますが、jarファイルを生成すると実行されます。org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 13 in XML document from class path resource [spring-beans.xml] is invalid;エラーが発生しました。ネストされた例外は org.xml.sax.SAXParseException です。行番号: 13; 列番号: 84; cvc-elt.1: 要素「beans」の宣言が見つかりません。
ここに私の春の設定ファイルがあります
<?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:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:annotation-config/>
<context:component-scan base-package="com.plyd.java"/>
</beans>
そのエラーをグーグルで調べて、プロジェクトでソリューションをテストしていますが、問題ありません。コードはIDEで機能しますが、実行可能なjarを生成して実行するとエラーが発生します。アドバイスをください ありがとうございます。