java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decimal result
아무리 BigDecimal이라고 해도 제한없는 숫자를 다룰 수는 없는 것이다.
divide시 자리수와 결과셋을 지정해줘야 한다.
bigDecimal.divide(bd, 2, BigDecimal.ROUND_CEILING);
반응형
'공부 > Spring' 카테고리의 다른 글
[JPA] 최범균님 <JPA 기초> 내용 정리하기 (0) | 2022.09.07 |
---|---|
[java] BigDecimal 사칙연산(더하기, 빼기, 나누기, 곱하기), 비교(compareTo) (0) | 2022.05.16 |
Connection Factory (0) | 2022.05.13 |
Reactive Streams (0) | 2022.04.16 |
[webflux] PublishOn, SubscribeOn (0) | 2022.04.15 |