Retrofit2 framework JAXB converter
Use
Maven Central
<dependency>
<groupId>cn.javaer</groupId>
<artifactId>retrofit2-converter-jaxb</artifactId>
<version>LATEST</version>
</dependency>
Demo
final Retrofit retrofit = new Retrofit.Builder()
.baseUrl("http://demo.com")
.addConverterFactory(JaxbConverterFactory.create())
.build();