I have spring SOAP service on Kotlin. With wsdl file, I generated java classes for SOAP requests and responses. Is there any way to print Java primitive double types (it is <xs:simpleType name="double" id="double"> in schema http://www.w3.org/2001/XMLSchema) without points?
What I have now:
<field_tag>1002775.0</field_tag>
What I want:
<field_tag>1002775</field_tag>
I saw this nearest question Using JAXB generated class for an element that requires an integer with a pattern
But do not understand how exactly in my case I must write the binds.xml file