Запятая коса / разделитель jsonnode в Java

Каков наилучший способ итерации через узел json с разделителями-запятыми под названием "name" в приведенном ниже сценарии?

        GetStoredValue result = 
        dataManagerService.getStoredValue(itemId).checkedGet();
        JsonNode node = mapper.readTree(result.getStoredString());
        if (node.has("name")
            && node.has("price")
            && node.has("sku"))
        {
            //iterate through comma delimited "name" value and return the dataSources
            //node: {"name":"test1,test2", "price":30, "sku":"123123123"}

            //return:
            //{"name":"test1", "price":30, "sku":"123123123"}
            //{"name":"test2", "price":30, "sku":"123123123"}

            ComboPooledDataSource dataSource = createDataSource(node);
            dataSources.put(itemId, dataSource);
            return dataSources.get(itemId);
        }

1 ответ

Решение

Да, если вы хотите разделить один узел на два, String.split было бы очевидным решением.

Вероятно, было бы лучше, если бы у вашего целевого класса был Builder, с помощью которого вы можете его создать, поэтому вы можете сделать что-то вроде этого:

private List<Product> fromJsonNode(JsonNode node) {
    String[] names = node.get("name").textValue().split(",");
    // create list of known size
    List<Product> products = new ArrayList<>(ids.length);
    // these values will remain the same for all products
    ProductBuilder builder = Product.builder()
                                    .price(node.get("price").numberValue())
                                    .sku(node.get("sku").textValue());
    for (String name : names) {
        // just set the name and create the product with it
        products.add(builder.name(name).build());
    }
    return products;
}
Другие вопросы по тегам