To marshal a long primitive type using JAXB, I have used @XmlJavaTypeAdapter annotation, which will adapt non-String type to a String. Even though it throw erro
XmlJavaTypeAdapter
Just replace
@XmlElement(type=Long.class) private long id;
with
@XmlSchemaType(name = "long") protected Long id;