BAEL-2466 spring soap
This commit is contained in:
parent
0c58a8ff8a
commit
931dc2ae18
|
@ -0,0 +1 @@
|
||||||
|
/target/
|
|
@ -0,0 +1,68 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-soap</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
|
<version>2.0.5.RELEASE</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<java.version>1.8</java.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<!-- tag::springws[] -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>wsdl4j</groupId>
|
||||||
|
<artifactId>wsdl4j</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<!-- end::springws[] -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<!-- tag::xsd[] -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>jaxb2-maven-plugin</artifactId>
|
||||||
|
<version>1.6</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>xjc</id>
|
||||||
|
<goals>
|
||||||
|
<goal>xjc</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<schemaDirectory>${project.basedir}/src/main/resources/</schemaDirectory>
|
||||||
|
<outputDirectory>${project.basedir}/src/main/java</outputDirectory>
|
||||||
|
<clearOutputDir>false</clearOutputDir>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<!-- end::xsd[] -->
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
|
@ -0,0 +1,12 @@
|
||||||
|
package com.baeldung.springsoap;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
|
@SpringBootApplication
|
||||||
|
public class Application {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(Application.class, args);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
package com.baeldung.springsoap;
|
||||||
|
|
||||||
|
import com.baeldung.springsoap.gen.*;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.ws.server.endpoint.annotation.Endpoint;
|
||||||
|
import org.springframework.ws.server.endpoint.annotation.PayloadRoot;
|
||||||
|
import org.springframework.ws.server.endpoint.annotation.RequestPayload;
|
||||||
|
import org.springframework.ws.server.endpoint.annotation.ResponsePayload;
|
||||||
|
|
||||||
|
@Endpoint
|
||||||
|
public class CountryEndpoint {
|
||||||
|
|
||||||
|
private static final String NAMESPACE_URI = "http://www.baeldung.com/springsoap/gen";
|
||||||
|
|
||||||
|
private CountryRepository countryRepository;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
public CountryEndpoint(CountryRepository countryRepository) {
|
||||||
|
this.countryRepository = countryRepository;
|
||||||
|
}
|
||||||
|
|
||||||
|
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "getCountryRequest")
|
||||||
|
@ResponsePayload
|
||||||
|
public GetCountryResponse getCountry(@RequestPayload GetCountryRequest request) {
|
||||||
|
GetCountryResponse response = new GetCountryResponse();
|
||||||
|
response.setCountry(countryRepository.findCountry(request.getName()));
|
||||||
|
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
package com.baeldung.springsoap;
|
||||||
|
|
||||||
|
import com.baeldung.springsoap.gen.*;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
|
import javax.annotation.PostConstruct;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@Component
|
||||||
|
public class CountryRepository {
|
||||||
|
|
||||||
|
private static final Map<String, Country> countries = new HashMap<>();
|
||||||
|
|
||||||
|
@PostConstruct
|
||||||
|
public void initData() {
|
||||||
|
Country spain = new Country();
|
||||||
|
spain.setName("Spain");
|
||||||
|
spain.setCapital("Madrid");
|
||||||
|
spain.setCurrency(Currency.EUR);
|
||||||
|
spain.setPopulation(46704314);
|
||||||
|
|
||||||
|
countries.put(spain.getName(), spain);
|
||||||
|
|
||||||
|
Country poland = new Country();
|
||||||
|
poland.setName("Poland");
|
||||||
|
poland.setCapital("Warsaw");
|
||||||
|
poland.setCurrency(Currency.PLN);
|
||||||
|
poland.setPopulation(38186860);
|
||||||
|
|
||||||
|
countries.put(poland.getName(), poland);
|
||||||
|
|
||||||
|
Country uk = new Country();
|
||||||
|
uk.setName("United Kingdom");
|
||||||
|
uk.setCapital("London");
|
||||||
|
uk.setCurrency(Currency.GBP);
|
||||||
|
uk.setPopulation(63705000);
|
||||||
|
|
||||||
|
countries.put(uk.getName(), uk);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Country findCountry(String name) {
|
||||||
|
Assert.notNull(name, "The country's name must not be null");
|
||||||
|
return countries.get(name);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
package com.baeldung.springsoap;
|
||||||
|
|
||||||
|
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
||||||
|
import org.springframework.context.ApplicationContext;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.core.io.ClassPathResource;
|
||||||
|
import org.springframework.ws.config.annotation.EnableWs;
|
||||||
|
import org.springframework.ws.config.annotation.WsConfigurerAdapter;
|
||||||
|
import org.springframework.ws.transport.http.MessageDispatcherServlet;
|
||||||
|
import org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition;
|
||||||
|
import org.springframework.xml.xsd.SimpleXsdSchema;
|
||||||
|
import org.springframework.xml.xsd.XsdSchema;
|
||||||
|
|
||||||
|
@EnableWs
|
||||||
|
@Configuration
|
||||||
|
public class WebServiceConfig extends WsConfigurerAdapter {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public ServletRegistrationBean messageDispatcherServlet(ApplicationContext applicationContext) {
|
||||||
|
MessageDispatcherServlet servlet = new MessageDispatcherServlet();
|
||||||
|
servlet.setApplicationContext(applicationContext);
|
||||||
|
servlet.setTransformWsdlLocations(true);
|
||||||
|
return new ServletRegistrationBean(servlet, "/ws/*");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean(name = "countries")
|
||||||
|
public DefaultWsdl11Definition defaultWsdl11Definition(XsdSchema countriesSchema) {
|
||||||
|
DefaultWsdl11Definition wsdl11Definition = new DefaultWsdl11Definition();
|
||||||
|
wsdl11Definition.setPortTypeName("CountriesPort");
|
||||||
|
wsdl11Definition.setLocationUri("/ws");
|
||||||
|
wsdl11Definition.setTargetNamespace("http://www.baeldung.com/springsoap/gen");
|
||||||
|
wsdl11Definition.setSchema(countriesSchema);
|
||||||
|
return wsdl11Definition;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public XsdSchema countriesSchema() {
|
||||||
|
return new SimpleXsdSchema(new ClassPathResource("countries.xsd"));
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,144 @@
|
||||||
|
//
|
||||||
|
// Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.7
|
||||||
|
// Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||||
|
// Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine.
|
||||||
|
// Generato il: 2019.01.25 alle 06:06:58 PM PST
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
package com.baeldung.springsoap.gen;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Classe Java per country complex type.
|
||||||
|
*
|
||||||
|
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="country">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="population" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||||
|
* <element name="capital" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="currency" type="{http://www.baeldung.com/springsoap/gen}currency"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "country", propOrder = {
|
||||||
|
"name",
|
||||||
|
"population",
|
||||||
|
"capital",
|
||||||
|
"currency"
|
||||||
|
})
|
||||||
|
public class Country {
|
||||||
|
|
||||||
|
@XmlElement(required = true)
|
||||||
|
protected String name;
|
||||||
|
protected int population;
|
||||||
|
@XmlElement(required = true)
|
||||||
|
protected String capital;
|
||||||
|
@XmlElement(required = true)
|
||||||
|
protected Currency currency;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recupera il valore della proprietà name.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Imposta il valore della proprietà name.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setName(String value) {
|
||||||
|
this.name = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recupera il valore della proprietà population.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getPopulation() {
|
||||||
|
return population;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Imposta il valore della proprietà population.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPopulation(int value) {
|
||||||
|
this.population = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recupera il valore della proprietà capital.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getCapital() {
|
||||||
|
return capital;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Imposta il valore della proprietà capital.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setCapital(String value) {
|
||||||
|
this.capital = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recupera il valore della proprietà currency.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Currency }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Currency getCurrency() {
|
||||||
|
return currency;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Imposta il valore della proprietà currency.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Currency }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setCurrency(Currency value) {
|
||||||
|
this.currency = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
//
|
||||||
|
// Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.7
|
||||||
|
// Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||||
|
// Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine.
|
||||||
|
// Generato il: 2019.01.25 alle 06:06:58 PM PST
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
package com.baeldung.springsoap.gen;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Classe Java per currency.
|
||||||
|
*
|
||||||
|
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="currency">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="GBP"/>
|
||||||
|
* <enumeration value="EUR"/>
|
||||||
|
* <enumeration value="PLN"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "currency")
|
||||||
|
@XmlEnum
|
||||||
|
public enum Currency {
|
||||||
|
|
||||||
|
GBP,
|
||||||
|
EUR,
|
||||||
|
PLN;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Currency fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,71 @@
|
||||||
|
//
|
||||||
|
// Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.7
|
||||||
|
// Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||||
|
// Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine.
|
||||||
|
// Generato il: 2019.01.25 alle 06:06:58 PM PST
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
package com.baeldung.springsoap.gen;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Classe Java per anonymous complex type.
|
||||||
|
*
|
||||||
|
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"name"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "getCountryRequest")
|
||||||
|
public class GetCountryRequest {
|
||||||
|
|
||||||
|
@XmlElement(required = true)
|
||||||
|
protected String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recupera il valore della proprietà name.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Imposta il valore della proprietà name.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setName(String value) {
|
||||||
|
this.name = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,71 @@
|
||||||
|
//
|
||||||
|
// Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.7
|
||||||
|
// Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||||
|
// Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine.
|
||||||
|
// Generato il: 2019.01.25 alle 06:06:58 PM PST
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
package com.baeldung.springsoap.gen;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Classe Java per anonymous complex type.
|
||||||
|
*
|
||||||
|
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="country" type="{http://www.baeldung.com/springsoap/gen}country"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"country"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "getCountryResponse")
|
||||||
|
public class GetCountryResponse {
|
||||||
|
|
||||||
|
@XmlElement(required = true)
|
||||||
|
protected Country country;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recupera il valore della proprietà country.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Country }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Country getCountry() {
|
||||||
|
return country;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Imposta il valore della proprietà country.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Country }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setCountry(Country value) {
|
||||||
|
this.country = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,63 @@
|
||||||
|
//
|
||||||
|
// Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.7
|
||||||
|
// Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||||
|
// Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine.
|
||||||
|
// Generato il: 2019.01.25 alle 06:06:58 PM PST
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
package com.baeldung.springsoap.gen;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This object contains factory methods for each
|
||||||
|
* Java content interface and Java element interface
|
||||||
|
* generated in the com.baeldung.springsoap.gen package.
|
||||||
|
* <p>An ObjectFactory allows you to programatically
|
||||||
|
* construct new instances of the Java representation
|
||||||
|
* for XML content. The Java representation of XML
|
||||||
|
* content can consist of schema derived interfaces
|
||||||
|
* and classes representing the binding of schema
|
||||||
|
* type definitions, element declarations and model
|
||||||
|
* groups. Factory methods for each of these are
|
||||||
|
* provided in this class.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlRegistry
|
||||||
|
public class ObjectFactory {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.baeldung.springsoap.gen
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjectFactory() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link GetCountryRequest }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GetCountryRequest createGetCountryRequest() {
|
||||||
|
return new GetCountryRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link GetCountryResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GetCountryResponse createGetCountryResponse() {
|
||||||
|
return new GetCountryResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link Country }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Country createCountry() {
|
||||||
|
return new Country();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
//
|
||||||
|
// Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.7
|
||||||
|
// Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||||
|
// Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine.
|
||||||
|
// Generato il: 2019.01.25 alle 06:06:58 PM PST
|
||||||
|
//
|
||||||
|
|
||||||
|
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.baeldung.com/springsoap/gen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||||
|
package com.baeldung.springsoap.gen;
|
|
@ -0,0 +1,37 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.baeldung.com/springsoap/gen"
|
||||||
|
targetNamespace="http://www.baeldung.com/springsoap/gen" elementFormDefault="qualified">
|
||||||
|
|
||||||
|
<xs:element name="getCountryRequest">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="name" type="xs:string"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="getCountryResponse">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="country" type="tns:country"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:complexType name="country">
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="name" type="xs:string"/>
|
||||||
|
<xs:element name="population" type="xs:int"/>
|
||||||
|
<xs:element name="capital" type="xs:string"/>
|
||||||
|
<xs:element name="currency" type="tns:currency"/>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
|
||||||
|
<xs:simpleType name="currency">
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:enumeration value="GBP"/>
|
||||||
|
<xs:enumeration value="EUR"/>
|
||||||
|
<xs:enumeration value="PLN"/>
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:schema>
|
|
@ -0,0 +1,23 @@
|
||||||
|
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
|
||||||
|
xmlns:gs="http://www.baeldung.com/springsoap/gen">
|
||||||
|
<soapenv:Header/>
|
||||||
|
<soapenv:Body>
|
||||||
|
<gs:getCountryRequest>
|
||||||
|
<gs:name>Spain</gs:name>
|
||||||
|
</gs:getCountryRequest>
|
||||||
|
</soapenv:Body>
|
||||||
|
</soapenv:Envelope>
|
||||||
|
|
||||||
|
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
|
||||||
|
<SOAP-ENV:Header/>
|
||||||
|
<SOAP-ENV:Body>
|
||||||
|
<ns2:getCountryResponse xmlns:ns2="http://www.baeldung.com/springsoap/gen">
|
||||||
|
<ns2:country>
|
||||||
|
<ns2:name>Spain</ns2:name>
|
||||||
|
<ns2:population>46704314</ns2:population>
|
||||||
|
<ns2:capital>Madrid</ns2:capital>
|
||||||
|
<ns2:currency>EUR</ns2:currency>
|
||||||
|
</ns2:country>
|
||||||
|
</ns2:getCountryResponse>
|
||||||
|
</SOAP-ENV:Body>
|
||||||
|
</SOAP-ENV:Envelope>
|
|
@ -0,0 +1,39 @@
|
||||||
|
package com.baeldung.springsoap;
|
||||||
|
|
||||||
|
import com.baeldung.springsoap.gen.GetCountryRequest;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
|
||||||
|
import org.springframework.boot.web.server.LocalServerPort;
|
||||||
|
import org.springframework.oxm.jaxb.Jaxb2Marshaller;
|
||||||
|
import org.springframework.test.context.junit4.SpringRunner;
|
||||||
|
import org.springframework.util.ClassUtils;
|
||||||
|
import org.springframework.ws.client.core.WebServiceTemplate;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
@RunWith(SpringRunner.class)
|
||||||
|
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
|
||||||
|
public class ApplicationIntegrationTest {
|
||||||
|
|
||||||
|
private Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
|
||||||
|
|
||||||
|
@LocalServerPort private int port = 0;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void init() throws Exception {
|
||||||
|
marshaller.setPackagesToScan(ClassUtils.getPackageName(GetCountryRequest.class));
|
||||||
|
marshaller.afterPropertiesSet();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void whenSendRequest_thenResponseIsNotNull() {
|
||||||
|
WebServiceTemplate ws = new WebServiceTemplate(marshaller);
|
||||||
|
GetCountryRequest request = new GetCountryRequest();
|
||||||
|
request.setName("Spain");
|
||||||
|
|
||||||
|
assertThat(ws.marshalSendAndReceive("http://localhost:" + port + "/ws", request)).isNotNull();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue