複数のエンドポイントと 2 つのバス定義で CXF を使用しようとしています。これが私の構成です。
<jaxws:endpoint id="csSegSEndPoint"
implementor="#csSegServices"
address="/ESTSServices"
bus="busEST">
</jaxws:endpoint>
<cxf:bus name="busEST">
<cxf:inInterceptors>
<ref bean="logInbound"/>
</cxf:inInterceptors>
<cxf:outInterceptors>
<ref bean="logOutbound"/>
</cxf:outInterceptors>
</cxf:bus>
問題は、アプリケーションを起動すると、次のようになることです。
org.springframework.beans.factory.BeanCreationException: 'csSegSEndPoint' という名前の Bean を作成中にエラーが発生しました: 一致するコンストラクターを解決できませんでした (ヒント: 型のあいまいさを避けるために、単純なパラメーターにインデックス/型/名前の引数を指定してください)
私はいくつかの検索を行いましたが、私が間違っていることを理解できません。手伝っていただけませんか?
注: CXF 2.2.10 を使用しています。
salu2..マッシュ...