Требуется учебник или пример клиента Spring Web Service


person Nirmal    schedule 06.03.2010    source источник
comment
Хороший образец можно найти по адресу stackoverflow.com/questions/18641928/   -  person Alireza Fattahi    schedule 24.11.2013


Ответы (2)


в моем предыдущем проекте я реализовал клиент Webservice с помощью Spring 2.5.6, maven2, xmlbeans.

  • xmlbeans отвечает за un/marshal
  • maven2 предназначен для управления проектом/здания и т. д.

Я вставляю сюда несколько кодов и надеюсь, что они будут полезны.

Конфигурация плагина xmlbeans maven: (в pom.xml)

<build>
        <finalName>projectname</finalName>

        <resources>

        <resource>

            <directory>src/main/resources</directory>

            <filtering>true</filtering>

        </resource>

        <resource>

            <directory>target/generated-classes/xmlbeans

            </directory>

        </resource>

    </resources>


        <!-- xmlbeans maven plugin for the client side -->

        <plugin>

            <groupId>org.codehaus.mojo</groupId>

            <artifactId>xmlbeans-maven-plugin</artifactId>

            <version>2.3.2</version>

            <executions>

                <execution>

                    <goals>

                        <goal>xmlbeans</goal>

                    </goals>

                </execution>

            </executions>

            <inherited>true</inherited>

            <configuration>

                <schemaDirectory>src/main/resources/</schemaDirectory>

            </configuration>

        </plugin>
<plugin>

            <groupId>org.codehaus.mojo</groupId>

            <artifactId>build-helper-maven-plugin

            </artifactId>

            <version>1.1</version>

            <executions>

                <execution>

                    <id>add-source</id>

                    <phase>generate-sources</phase>

                    <goals>

                        <goal>add-source</goal>

                    </goals>

                    <configuration>

                        <sources>

                            <source> target/generated-sources/xmlbeans</source>

                        </sources>

                    </configuration>

                </execution>



            </executions>

        </plugin>
    </plugins>
</build>

Таким образом, из приведенной выше конфигурации вам нужно поместить файл схемы (автономный или в файл WSDL, вам нужно извлечь их и сохранить как файл схемы) в src/main/resources. когда вы создаете проект с помощью maven, pojos будут генерироваться xmlbeans. Сгенерированные исходные коды будут находиться в папке target/generated-sources/xmlbeans.

затем мы приходим к Spring conf. Я просто поместил здесь соответствующий контекст WS:

    <bean id="messageFactory" class="org.springframework.ws.soap.axiom.AxiomSoapMessageFactory">

        <property name="payloadCaching" value="true"/>

    </bean>


    <bean id="abstractClient" abstract="true">
        <constructor-arg ref="messageFactory"/>
    </bean>

    <bean id="marshaller" class="org.springframework.oxm.xmlbeans.XmlBeansMarshaller"/>

 <bean id="myWebServiceClient" parent="abstractClient" class="class.path.MyWsClient">

        <property name="defaultUri" value="http://your.webservice.url"/>

        <property name="marshaller" ref="marshaller"/>

        <property name="unmarshaller" ref="marshaller"/>

    </bean>

наконец, взгляните на класс Java ws-client

public class MyWsClient extends WebServiceGatewaySupport {
 //if you need some Dao, Services, just @Autowired here.

    public MyWsClient(WebServiceMessageFactory messageFactory) {
        super(messageFactory);
    }

    // here is the operation defined in your wsdl
    public Object someOperation(Object parameter){

      //instantiate the xmlbeans generated class, infact, the instance would be the document (marshaled) you are gonna send to the WS

      SomePojo requestDoc = SomePojo.Factory.newInstance(); // the factory and other methods are prepared by xmlbeans
      ResponsePojo responseDoc = (ResponsePojo)getWebServiceTemplate().marshalSendAndReceive(requestDoc); // here invoking the WS


//then you can get the returned object from the responseDoc.

   }

}

Я надеюсь, что примеры кодов будут полезны.

person Kent    schedule 09.03.2010

Пошаговое руководство по работе с клиентом веб-службы с Spring-WS @ http://justcompiled.blogspot.com/2010/11/web-service-client-with-spring-ws.html

person Shameer Kunjumohamed    schedule 07.11.2010