Требуется учебное пособие или пример для клиента веб-службы Spring

Мне нужно перейти к проекту Spring Web Service, так как мне нужно было реализовать только Client Spring Web Service.

Итак, я уже ознакомился со справочным документом Spring для клиентов.

Итак, я получил представление о необходимых классах для реализации Client.

Но моя проблема в том, что я немного погуглил, но не получил ни одного правильного примера как Клиента, так и Сервера, из которого я могу реализовать один пример для своего клиента.

Так что, если кто-нибудь даст мне какую-нибудь ссылку или учебник для правильного примера, из которого я могу узнать, что моя реализация на стороне клиента будет принята с благодарностью.

Заранее спасибо...

2 ответа

Решение

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

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

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

conf плагина 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>

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

Затем мы приходим к весне конф. Я просто поместил соответствующий контекст 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-клиента

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.

   }

}

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

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

Другие вопросы по тегам