5

我正在使用一个看起来像这样的 XML 有效负载(有关更全面的示例,请查看:http ://api.shopify.com/product.html )。

<products type="array">
   <product>
      ...
   </product>
   <product>
      ...
   </product>
</products>

现在我的代码确实可以工作,但它做的事情似乎真的很“错误”——即将“产品”与 List.class 相关联。所以相关代码如下所示:

    xstream.alias( "products", List.class );
    xstream.alias( "product", ShopifyProduct.class );

这很好,除非当我使用该 xstream 实例将任何对象外部化时,它当然总是使用“产品”,这不是我想要的。

我希望能够将通用集合映射到标签:

xstream.alias( "products", ( List<ShopifyProduct> ).class ); // way too easy 

或者让以下片段起作用,目前还没有:

    ClassAliasingMapper mapper = new ClassAliasingMapper( xstream.getMapper( ) );
    mapper.addClassAlias( "product", ShopifyProduct.class );
    xstream.registerLocalConverter( ShopifyProductResponse.class, "products", new CollectionConverter( mapper ) );

我创建了 ShopifyProductResponse 类来尝试包装 ShopifyProduct,但它没有任何告诉我:

com.thoughtworks.xstream.mapper.CannotResolveClassException: products : products at com.thoughtworks.xstream.mapper.DefaultMapper.realClass(DefaultMapper.java:68) at com.thoughtworks.xstream.mapper.MapperWrapper.realClass(MapperWrapper.java:38 )

如果我添加:

xstream.alias( "products", List.class );

那时它消失了......所以在我看来,mapperwrapper 没有在这里占据一席之地 - 可能是因为它正在寻找 ShopifyProductResponse 对象并找到一个 List 代替 - 我真的不知道。

4

1 回答 1

6

如果我理解正确,这就是你要找的。 ShoppifyProductResponse.java

public class ShoppifyProductResponse {

private List<ShoppifyProduct> product;

/**
 * @return the products
 */
public List<ShoppifyProduct> getProducts() {
    return product;
}

/**
 * @param products
 *            the products to set
 */
public void setProducts(List<ShoppifyProduct> products) {
    this.product = products;
}

}

还有一个转换器。解组可能看起来像这样。

public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) {
    /**
     * Tune the code further..
     */
    ShoppifyProductResponse products = new ShoppifyProductResponse();
    List<ShoppifyProduct> lst = new ArrayList<ShoppifyProduct>();
    while (reader.hasMoreChildren()) {
        reader.moveDown();
        ShoppifyProduct thisProduct = (ShoppifyProduct) context.convertAnother(products,
                ShoppifyProduct.class);
        lst.add(thisProduct);
        reader.moveUp();
    }
    products.setProducts(lst);
    return products;
}

您可以将其注册为,

    XStream stream = new XStream();
    stream.alias("products", ShoppifyProductResponse.class);
    stream.registerConverter(new ShoppifyConverter());
    stream.alias("product", ShoppifyProduct.class);

我已经尝试过了,它工作得很好。试一试,让我知道。

于 2010-06-29T05:38:47.170 回答