Tag: jaxb
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…
Introduction This tutorial will show you how to read a csv file data and write to xml file with some modification. We’ll build a service that imports data from a CSV file, transforms it with custom code, and stores the final results in XML file. You can read the tutorial Spring Batch to read what is…
Here I am going to give an example on how REST webservice works. The most important concept in REST is resources, which are identified by global IDs — typically using URIs. Client applications use HTTP methods (GET/ POST/ PUT/ DELETE) to manipulate the resource or collection of resources. A RESTful Web service is implemented using…