gpt4 book ai didi

java - 在 JAXB/Resteasy 中使用泛型类扩展时的 NPE

转载 作者:搜寻专家 更新时间:2023-11-01 03:54:15 25 4
gpt4 key购买 nike

我正在使用 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 接口(interface):

@GET
@Path("/status/{what}")
IntegerValue getStatus(@PathParam ("what")Integer what) ;

API 实现:

@Override
public
IntegerValue getStatus(Integer what) {
return new IntegerValue(what);
}

NPE 的原因,当我的浏览器调用 http:.../status/1 时,config 返回 null:

package 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);
}

最佳答案

我认为您应该在 public ValueContainer() 中抛出异常。这个 ctor 存在只是因为 JAXB 要求我们有公共(public)的无参数构造函数(参见 What JAXB needs a public no-arg constructor for? )。发生的情况是您的对象在没有任何参数的情况下被实例化并且 value 保持为 null(奇怪的是您的 Java 编译器没有提示)。

关于java - 在 JAXB/Resteasy 中使用泛型类扩展时的 NPE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13522769/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com