我有三个班级
@XmlRootElement
public class GeofenceParameter{
private GeofenceCenterAddress geofenceCenterAddress;
private GeofenceCenterCoordinates geofenceCenterCoordinates;
}
public class GeofenceCenterAddress extends GeofenceParameter{
}
public class GeofenceCenterCoordinate extends GeofenceParameter{
}
我已经制作了两个不同的XmlAdapter扩展类来对GeofenceCenterAddress和GeofenceCentereCoordinate中的Geofence Paramtere进行编组和解组
Class forGeofenceCenterCoordinate extends XmlAdapter<ValueType,BoundType>{
}
Class forGeofenceCenterAddress extends XmlAdapter<ValueType,BoundType>{
}
根据Soap请求发送,从GeofenceParamter获取相关的GeofenceCenterAddress或GeofenceCenterCoordinate类的实例。
For This我在package-info.java文件中使用了注释@XmlJavaTypeAdapters{(@XmlJavaTypeAdapter(type=forGeofenceCenterCoordinate)),@XmlJavaTypeAdapter(type=forGeofenceCenterAddress)}
但是在Web服务中,它会给我一个类的实例,我在GeofenceParamter的注释中指定了这个@XmlJavaTypeAdapter(type=forGeofenceCenterCoordinate) class not of @XmlJavaTypeAdapter(type=forGeofenceCenterAddress)
。
请你在JAXB继承编组和解组中帮助我修改第二类实例。
提前致谢
答案 0 :(得分:1)
我不记得曾使用@XmlJavaTypeAdapters
,但@XmlJavaTypeAdapter
注释的正常用法只是@XmlJavaTypeAdapter(forGeofenceCenterCoordinate.class)
。
只有在包级别应用注释时才需要type参数。