Polishing tutorial.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
= Spring Web Service Tutorial
|
||||
|
||||
This sample contains the code for the tutorial, which can be found in the
|
||||
https://projects.spring.io/spring-ws[Spring Web Services] reference documentation.
|
||||
https://spring.io/projects/spring-ws[Spring Web Services] reference documentation.
|
||||
|
||||
== Build and deploy
|
||||
|
||||
@@ -13,4 +13,4 @@ http://localhost:8080/tutorial/holiday.wsdl
|
||||
|
||||
== License
|
||||
|
||||
https://projects.spring.io/spring-ws[Spring Web Services] is released under version 2.0 of the http://www.apache.org/licenses/LICENSE-2.0[Apache License].
|
||||
https://projects.spring.io/spring-ws[Spring Web Services] is released under version 2.0 of the http://www.apache.org/licenses/LICENSE-2.0[Apache License].
|
||||
|
||||
@@ -17,16 +17,13 @@
|
||||
<description>Demo project for Spring Web Services</description>
|
||||
|
||||
<properties>
|
||||
<java.version>1.8</java.version>
|
||||
<jaxen.version>1.1.4</jaxen.version>
|
||||
<jdom.version>2.0.1</jdom.version>
|
||||
<joda-time.version>2.10.6</joda-time.version>
|
||||
<log4j2.version>2.15.0</log4j2.version>
|
||||
<jaxen.version>1.1.6</jaxen.version>
|
||||
<jdom.version>2.0.6.1</jdom.version>
|
||||
<sourcesDir>${project.basedir}/target/generated-sources/axis</sourcesDir>
|
||||
<classesDir>${project.basedir}/target/classes</classesDir>
|
||||
<wsdl>${project.basedir}/../airline.wsdl</wsdl>
|
||||
<wsdl4j.version>1.6.1</wsdl4j.version>
|
||||
<xmlschema.version>2.1.0</xmlschema.version>
|
||||
<wsdl4j.version>1.6.3</wsdl4j.version>
|
||||
<xmlschema.version>2.2.2</xmlschema.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
@@ -38,7 +35,7 @@
|
||||
|
||||
<dependency>
|
||||
<groupId>org.jdom</groupId>
|
||||
<artifactId>jdom</artifactId>
|
||||
<artifactId>jdom2</artifactId>
|
||||
<version>${jdom.version}</version>
|
||||
</dependency>
|
||||
|
||||
@@ -77,12 +74,6 @@
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.junit.vintage</groupId>
|
||||
<artifactId>junit-vintage-engine</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
@@ -99,7 +90,7 @@
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>jaxb2-maven-plugin</artifactId>
|
||||
<version>2.5.0</version>
|
||||
<version>3.1.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>xjc</id>
|
||||
@@ -111,7 +102,7 @@
|
||||
<configuration>
|
||||
<sources>${project.basedir}/src/main/resources/hr.xsd</sources>
|
||||
<packageName>org.springframework.ws.samples.tutorial.schema</packageName>
|
||||
<target>2.1</target>
|
||||
<target>3.0</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
||||
3
tutorial/src/main/resources/application.properties
Normal file
3
tutorial/src/main/resources/application.properties
Normal file
@@ -0,0 +1,3 @@
|
||||
logging.level.org.springframework.ws=DEBUG
|
||||
logging.level.org.springframework.xml=DEBUG
|
||||
logging.level.com.mycompany.hr=DEBUG
|
||||
Reference in New Issue
Block a user