クラス SoapActionAnnotationMethodEndpointMapping

実装されたすべてのインターフェース:
org.springframework.beans.factory.Awareorg.springframework.context.ApplicationContextAwareorg.springframework.core.OrderedEndpointMappingSoapEndpointMapping

public class SoapActionAnnotationMethodEndpointMapping extends AbstractAnnotationMethodEndpointMapping<StringSE> implements SoapEndpointMapping
SoapAction アノテーションを使用してメソッドをリクエスト SOAPAction ヘッダーにマップする EndpointMapping インターフェースの実装。

通常、エンドポイントの形式は次のとおりです。

 @Endpoint
 public class MyEndpoint{
          @SoapAction("http://springframework.org/spring-ws/SoapAction")
          public Source doSomethingWithRequest() {
                 ...
          }
 }
 
導入:
1.0.0
作成者:
Arjen Poutsma