forked from spring-projects/spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- upgraded Spring WS to 2.2.0.RELEASE - replaced default MVC DispatcherServlet with MessageDispatcherServlet - migrated XML based config with nww Spring WS Java config Fixes: spring-projectsgh-412
- Loading branch information
1 parent
e2a449d
commit 95a6ce9
Showing
10 changed files
with
191 additions
and
183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,53 @@ | ||
<?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"> | ||
<parent> | ||
<artifactId>spring-boot-samples</artifactId> | ||
<groupId>org.springframework.boot</groupId> | ||
<version>1.1.0.BUILD-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
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"> | ||
<parent> | ||
<artifactId>spring-boot-samples</artifactId> | ||
<groupId>org.springframework.boot</groupId> | ||
<version>1.1.0.BUILD-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>spring-boot-sample-ws</artifactId> | ||
<artifactId>spring-boot-sample-ws</artifactId> | ||
|
||
<properties> | ||
<main.basedir>${basedir}/../..</main.basedir> | ||
<java.version>1.7</java.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-ws</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-actuator</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jdom</groupId> | ||
<artifactId>jdom</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>jaxen</groupId> | ||
<artifactId>jaxen</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</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> | ||
</plugins> | ||
</build> | ||
<properties> | ||
<main.basedir>${basedir}/../..</main.basedir> | ||
<java.version>1.7</java.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-ws</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-actuator</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jdom</groupId> | ||
<artifactId>jdom</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>jaxen</groupId> | ||
<artifactId>jaxen</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>wsdl4j</groupId> | ||
<artifactId>wsdl4j</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</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> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
spring-boot-samples/spring-boot-sample-ws/src/main/java/sample/ws/WebServiceConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package sample.ws; | ||
|
||
import org.springframework.boot.context.embedded.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; | ||
|
||
/** | ||
* Configures Spring Web Service components | ||
* | ||
* @author Maciej Walkowiak | ||
*/ | ||
@EnableWs | ||
@Configuration | ||
public class WebServiceConfig extends WsConfigurerAdapter { | ||
@Bean | ||
public ServletRegistrationBean dispatcherServlet(ApplicationContext applicationContext) { | ||
MessageDispatcherServlet servlet = new MessageDispatcherServlet(); | ||
servlet.setApplicationContext(applicationContext); | ||
|
||
return new ServletRegistrationBean(servlet, "/services/*"); | ||
} | ||
|
||
@Bean(name = "holiday") | ||
public DefaultWsdl11Definition defaultWsdl11Definition(XsdSchema countriesSchema) { | ||
DefaultWsdl11Definition wsdl11Definition = new DefaultWsdl11Definition(); | ||
wsdl11Definition.setPortTypeName("HumanResource"); | ||
wsdl11Definition.setLocationUri("/holidayService/"); | ||
wsdl11Definition.setTargetNamespace("http://mycompany.com/hr/definitions"); | ||
wsdl11Definition.setSchema(countriesSchema); | ||
return wsdl11Definition; | ||
} | ||
|
||
@Bean | ||
public XsdSchema countriesSchema() { | ||
return new SimpleXsdSchema(new ClassPathResource("META-INF/schemas/hr.xsd")); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
...ot-samples/spring-boot-sample-ws/src/main/resources/META-INF/spring/spring-ws-context.xml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.