Spring SOAP WebService Producers Using Gradle

Table of Contents Introduction Prerequisites Project Setup Spring Boot 2.6.4 Spring Boot 2.1.6 Spring Boot 1.5.9 Spring Boot Main Class XSD Schema Repository Service Endpoint Configuring SOAP Service Changing Server Port Running SOAP Application Testing SOAP Application JDK 9 Issue Source Code Introduction This tutorial will show you an example on Spring SOAP WebService producers using Gradle. In other words,…

Generating jaxb classes from xsd using Gradle

This tutorial will show you how to generate Java classes from XSD file using JAXB API and Gradle. Generating JAXB classes from xsd using Gradle is not an easy task because Gradle does not have yet any ready-made plugin like Maven. So to generate Java classes from XSD schema using Gradle you have to write an an Ant Task. The below…