I am not able lookup attribute value of an element. My XML is
<Person>
<BirthDate>2008-01-04</BirthDate>
<FirstName>Affo</FirstName>
<Gender tc="200">Male</Gender>
<LastName></LastName>
<Occupation>false</Occupation>
<Age>4</Age>
</Person>
I am interested in <Gender tc="200">Male</Gender>. My POJO looks like this:
private String FirstName;
private String LastName;
private String Occupation;
@XStreamAsAttribute
@XStreamAlias("tc")
private String genderTC;
private String Gender;
private String birthDate;
private int age;
From XML is
XStream stream = new XStream(new DomDriver());
stream.processAnnotations(PersonType.class);
PersonType person = (PersonType) stream.fromXML(file);
System.out.println(person.getFirstName());
System.out.println(person.getGenderTC());
System.out.println(person.getGender());
Here for person.getGenderTC() I am getting null. Interesting part is when I reversed the process and generated the xml using same PersonType pojo, I got following XML:
<Person tc="111">
<FirstName>Himanshu</FirstName>
<Gender>M</Gender>
<Age>28</Age>
</Person>

jaxb.propertiesfile is required when using MOXy with the standard JAXB (JSR-222) APIs. You can of course use the native APIs. I'm the EclipseLink JAXB (MOXy) lead. – Blaise Doughan Jul 10 '12 at 17:55