私はメンテナンスしているスタンドアロンの Java アプリケーションに行き詰まっています。Maven は初めてです。依存関係のコピー、コマンド ラインでのパッケージ プラグイン、すべて問題ありませんが、Eclipse でプロジェクトを確認すると、プロジェクトが検証され、どの .xsd バージョンを考慮する必要があるかを確認する際に問題があるようです。
説明 リソース パスの場所 タイプ src-resolve: 名前 'beans:identifiedType' を (n) 'type definition' コンポーネントに解決できません。spring-jee-2.0.xsd
説明 リソース パス ロケーション タイプ src-resolve: 名前 'beans:identifiedType' を a(n) 'type definition' コンポーネントに解決できません。spring-jee-2.5.xsd
spring 2.5.6 を使用していますが、アップグレードできません。Eclipse IDE で何かをセットアップする必要があるかどうかわかりません。
私の設定ファイルは次のようなものです:
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd">
アイデアや提案はありますか?プロジェクトまたはEclipse IDEの問題に関連していますか?
前もって感謝します