I have some BigDecimal
values in database, like 10000.00, 12357.87 etc.
Now I'm trying to get these values by using GET API REST in spring boot, but here the problem is in Swagger or Postman response I see like:
"amount":"10000.00"
but I want value without quotes "amount": 10000.00
Response class:
public class ResponseDTO{
@JsonFormat(shape = JsonFormat.Shape.STRING)
private BigDecimal amount;
}
If I removed @JsonFormat(shape = JsonFormat.Shape.STRING)
annotation it will shown as "amount":10000