我正在使用以下代码编写我的一个JAVA Web服务。但是在渲染时,JAXBException即将到来,因为它无法正确解析我在下面的代码中使用的多级hashmap。
import java.util.HashMap;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "XYZEntry")
public class XYZEntry extends BaseEntry{
private static final long serialVersionUID = 1L;
private HashMap< String, HashMap< String, String>> component;
@XmlElement(name = "orderWiseComponent")
public HashMap< String, HashMap< String, String>> getComponent() {
return component;
}
public void setComponent(HashMap< String, HashMap< String, String>> component) {
this.component = component;
}