Java Stream's 
CollectorsCollectiontoXXX()reducing()Let's imagine an e-commerce platform that implements a shopping cart. The cart is modeled as the following:
This diagram might translate into the following (abridged) code:
public class Product {
    private final Long id;                           // 1
    private final String label;                      // 1
    private final BigDecimal price;                  // 1
    public Product(Long id, String label, BigDecimal price) {
        this.id = id;
        this.label = label;
        this.price = price;
    }
    @Override
    public boolean equals(Object object ) { ... }    // 2
    @Override
    public int hashCode() { ... }                    // 2
}- Getters
- Only depend on id
public class Cart {
    private final Map<Product, Integer> products = new HashMap<>(); // 1
    public void add(Product product) {
        add(product, 1);
    }
    public void add(Product product, int quantity) {
        products.merge(product, quantity, Integer::sum);
    }
    public void remove(Product product) {
        products.remove(product);
    }
    public void setQuantity(Product product, int quantity) {
        products.put(product, quantity);
    }
    public Map<Product, Integer> getProducts() {
        return Collections.unmodifiableMap(products);               // 2
    }
}- Organize products into a map. The key is the 
 ; the value is the quantity.Product
- Remember to return a read-only copy of the collection to maintain encapsulation.
Once we have defined how we store data in memory, we need to design how to display the cart on-screen. We know that the checkout screen needs to show two different bits of information:
- The list of rows with the price for each row, i.e., the price per product times the quantity.
- The overall price of the cart.
Here's the corresponding code:
public record CartRow(Product product, int quantity) {                // 1
    public CartRow(Map.Entry<Product, Integer> entry) {
        this(entry.getKey(), entry.getValue());
    }
    public BigDecimal getRowPrice() {
        return product.getPrice().multiply(new BigDecimal(quantity));
    }
}
 is a value object. We can model it as a Java 16- CartRow
 .- record
var rows = cart.getProducts()
    .entrySet()
    .stream()
    .map(CartRow::new)
    .collect(Collectors.toList());                                    // 1
var price = cart.getProducts()
    .entrySet()
    .stream()
    .map(CartRow::new)
    .map(CartRow::getRowPrice)                                        // 2
    .reduce(BigDecimal.ZERO, BigDecimal::add);                        // 3- Collect the list of rows.
- Compute the price for each row.
- Compute the total price.
One of the main limitations of Java streams is that you can only consume them once. The reason is that streamed objects are not necessarily immutable (though they can be). Hence, executing the same stream twice might not be idempotent.
Therefore, to get both the rows and the price, we need to create two streams from the cart. From one stream, we will get the rows and from the other the price. This is not the way.
We want to collect both rows and the price from a single stream. We need a custom 
Collectorpublic class PriceAndRows {
    private BigDecimal price;                              // 1
    private final List<CartRow> rows = new ArrayList<>();  // 2
    PriceAndRows(BigDecimal price, List<CartRow> rows) {
        this.price = price;
        this.rows.addAll(rows);
    }
    PriceAndRows() {
        this(BigDecimal.ZERO, new ArrayList<>());
    }
}- Total cart price.
- List of cart rows that can display the product's label, the product's price, and the row price.
Here's a summary of the 
Collector
 : Supply the base object to start from- supplier()
 : Describe how to accumulate the current streamed item to the container- accumulator()
 : If the stream is parallel, describe how to merge them- combiner()
 : If the mutable container type is not the returned type, describe how to transform the former into the latter- finisher()
 : Provide meta-data to optimize the stream |- characteristics()
Given this, we can implement the 
Collectorprivate class PriceAndRowsCollector
    implements Collector<Map.Entry<Product, Integer>, PriceAndRows, PriceAndRows> {
    @Override
    public Supplier<PriceAndRows> supplier() {
        return PriceAndRows::new;                                                // 1
    }
    @Override
    public BiConsumer<PriceAndRows, Map.Entry<Product, Integer>> accumulator() {
        return (priceAndRows, entry) -> {                                        // 2
            var row = new CartRow(entry);
            priceAndRows.price = priceAndRows.price.add(row.getRowPrice());
            priceAndRows.rows.add(row);
        };
    }
    @Override
    public BinaryOperator<PriceAndRows> combiner() {
        return (c1, c2) -> {                                                     // 3
            c1.price = c1.price.add(c2.price);
            var rows = new ArrayList<>(c1.rows);
            rows.addAll(c2.rows);
            return new PriceAndRows(c1.price, rows);
        };
    }
    @Override
    public Function<PriceAndRows, PriceAndRows> finisher() {
        return Function.identity();                                              // 4
    }
    @Override
    public Set<Characteristics> characteristics() {
        return Set.of(Characteristics.IDENTITY_FINISH);                          // 4
    }
}
- The mutable container is an instance of 
 .PriceAndRows
- For each map entry containing the product and the quantity, accumulate both into the 
 .PriceAndRows
- Two 
 can be combined by summing their total price and aggregating their respective rows.PriceAndRows
- The mutable container can be returned as-is.
Designing the 
Collectorvar priceAndRows = cart.getProducts()
                       .entrySet()
                       .stream()
                       .collect(new PriceAndRowsCollector());Conclusion
You can solve most use cases with one of the out-of-the-box collectors provided in the 
CollectorsCollectorWhile it may seem complicated if you never developed one before, it's not. You only need a bit of practice. I hope this post might help you with it.
You can find the source code of this post on GitHub in Maven format.
To go further
Originally published at A Java Geek on May 2nd, 2021
Previously published at https://blog.frankel.ch/real-world-stream-collector/
