package com.zswl.dataservicestarter.config.converts; import org.bson.types.Decimal128; import org.springframework.core.convert.converter.Converter; import org.springframework.data.convert.ReadingConverter; import org.springframework.data.convert.WritingConverter; import java.math.BigDecimal; @ReadingConverter @WritingConverter public class Decimal128ToBigDecimalConverter implements Converter { public BigDecimal convert(Decimal128 decimal128) { return decimal128.bigDecimalValue(); } }