Spring Integration 2.2.4 を使用しており、GET/POST REST サービスを呼び出すための HTTP 送信チャネル アダプターを追加しようとしています。現在、アダプタはグラフ ビューに表示されていますが、コードでドラッグして使用しようとすると、作成されません。
必要に応じて HTTP 名前空間 URI を追加しました。
<?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:http="http://www.springframework.org/schema/integration/http"
xmlns:int="http://www.springframework.org/schema/integration"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/integration
http://www.springframework.org/schema/integration/spring-integration.xsd
http://www.springframework.org/schema/integration/http
http://www.springframework.org/schema/integration/http/spring-integration-http.xsd">
<http:outbound-channel-adapter channel=""/>
これをソース XML に手動で追加しようとすると、「一致するワイルドカードは厳密ですが、要素 http:outbound-channel-adapter の宣言が見つかりませんでした」というエラーが表示されます。
サンプルの http-outbound チャネル アダプターを使用して、ここで私を助けてくれる人はいますか? ここで何か不足していますか?