I have following hibernate property:
@Id()
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id = null;
I want to add JAXB annotation @XmlID to this id but @XmlID can only be applied to String data types. How can I solve this problem.