我正在使用RestEasy 2.3.4。我遇到了NPE。我有一个泛型基类ValueContainer,我计划通过用适当的类型替换泛型参数来扩展为StringValue,IntegerValue,BooleanValue等。
我正在尝试使用扩展类作为数据传输对象,如下所示。但是,我在JAXB处理中遇到NPE。这意味着,我没有正确处理JAXB中的扩展类。请指教。做正确的方法是什么?谢谢。
基类:
@XmlAccessorType(XmlAccessType.FIELD)
public class ValueContainer<T> {
@XmlAttribute
protected T value;
public ValueContainer() {
}
public ValueContainer(T value) {
this.value = value;
}
public T getValue() {
return value;
}
public void setValue(T value) {
this.value = value;
}
}
示例扩展类:
@XmlRootElement (name="integervalue")
public class IntegerValue extends ValueContainer<Integer> {
public IntegerValue() {
}
public IntegerValue(Integer value) {
super(value);
}
}
jax-rs API接口:
@GET
@Path("/status/{what}")
IntegerValue getStatus(@PathParam ("what")Integer what) ;
API impl:
@Override
public
IntegerValue getStatus(Integer what) {
return new IntegerValue(what);
}
NPE的原因,当我的浏览器调用http:... / status / 1:
时,config返回nullpackage org.jboss.resteasy.plugins.providers.jaxb;
.....
protected JAXBContext createContextObject(Annotation[] parameterAnnotations, Class... classes) throws JAXBException
{
JAXBConfig config = FindAnnotation.findAnnotation(parameterAnnotations, JAXBConfig.class);
return new JAXBContextWrapper(config, classes);
}
答案 0 :(得分:0)
我认为你应该在public ValueContainer()
中抛出异常。这个ctor只是因为JAXB要求我们拥有公共的无参数构造函数(参见What JAXB needs a public no-arg constructor for?)。发生的事情是你的对象被实例化而没有任何参数,value
保持为空(奇怪的是你的Java编译器没有抱怨)。