J'essaie d'arrondir les valeurs BigDecimal à deux décimales près. j'utilise BigDecimal rounded = value.round(new MathContext(2, RoundingMode.CEILING)); logger.trace("rounded {} to {}", value, rounded); mais il ne fait pas toujours ce que je veux: rounded 0.819 to 0.82 rounded 1.092 to 1.1 rounded...