我正在使用JAXB / Jersey(1.3)在REST API中将java转换为json。 我读了很多关于这个问题的文章,我尝试了这个solution,它的工作量只有一半:
@XmlRootElement
public class ArrayWrapper
{
public List<String> list = new LinkedList<String>();
}
和我的ContextResolver:
@Provider
public class JAXBContextResolver implements ContextResolver<JAXBContext> {
private JAXBContext context;
private Class[] types = {ArrayWrapper.class,Wrapper.class};
public JAXBContextResolver() throws Exception {
MappedBuilder builder = JSONConfiguration.mapped();
builder.arrays("list");
builder.rootUnwrapping(true);
this.context = new JSONJAXBContext(builder.build(), types);
}
ArrayWrapper aw = new ArrayWrapper();
aw.list.add( “测试”);
我得到{“list”:[“test”]}所以它可以工作但是当我在其他类中包装ArrayWrapper时它不起作用:
@XmlRootElement
public class Wrapper
{
public ArrayWrapper aw;
public Wrapper()
{
aw=new ArrayWrapper();
aw.list.add("test");
}
}
new Wrapper();
我得到{“aw”:{“list”:“test”}}
任何人都知道如何修复它?