1

私は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を生成して実行するとエラーが発生します。アドバイスをください ありがとうございます。

4

1 に答える 1

2

Eclipse を使用している場合は、この 1 つのエクスポート jar を > [必要なライブラリをサブフォルダーにコピー]で試してください。

于 2014-02-21T07:46:20.933 に答える