This is something I encountered as a real world problem.
I have a class as shown below. The choice of the field names is not mine, but is dictated by actual field names in the database (names changed).
import java.util.Date;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
@XmlRootElement(name = "JAXBAnnotatedClass1")
@XmlType(propOrder = { "A_DT", "B_DT" })
public class JAXBAnnotatedClass1
{
private Date A_DT;
private Date B_DT;
@XmlJavaTypeAdapter(JaxbDateAdapter.class)
public Date getA_DT()
{
return A_DT;
}
public void setA_DT(Date a_DT)
{
A_DT = a_DT;
}
@XmlJavaTypeAdapter(JaxbDateAdapter.class)
public Date getB_DT()
{
return B_DT;
}
public void setB_DT(Date b_DT)
{
B_DT = b_DT;
}
}
I don't think the Date Adapter class is relevant to the problem.
I am using Eclipse Indigo Service Release Version 1. I tried to generate schema from this class, but I got the following errors -
Property a_DT is present but not specified in @XmlType.propOrder
this problem is related to the following location:
....JAXBAnnotatedClass1.getA_DT()
at com.cigna.framework.testing.JAXBAnnotatedClass1
Property b_DT is present but not specified in @XmlType.propOrder
this problem is related to the following location:
....JAXBAnnotatedClass1.getB_DT()
The weird thing here is that if I make the following change, everything works -
@XmlType(propOrder = { "a_DT", "b_DT" }) // changed first uppercase letter
//to lowercase without changing field name
Another interesting observation is that if I had field names like these (below) instead, everything works! The only difference in the case below is that the field name has two uppercase letters instead of one, before the underscore.
@XmlRootElement(name = "JAXBAnnotatedClass2")
@XmlType(propOrder = { "AX_DT", "BX_DT" })
public class JAXBAnnotatedClass2
{
private Date AX_DT;
private Date BX_DT;
// similar code...
What is causing this problem? Is there a way to solve this?