I have a jaxb object which can be marshalled successfully, and it has a list object, then I make a new object like below
public class Sub extends SuperJAXBClass{
@Override
public List getList1(){
//override here
return ...;
}
}
Then the code like below: SuperJAXBClass sjc=new Sub(); marshall(sjc)
Then I found the List1 in Sub is not marshalled successfully. Any one knows why this happens? How to solve it?