I if there is a method signature as follows
public void deposit(@RequestParam("accountId") Integer accountId, @RequestParam("amount") BigDecimal amount) {...}
And since I have a specific decimal value for the locale that needs to be converted to BigDecimal , is there some kind of annotation that allows me to configure incoming data like @Decimal ("###. ###, ##") or something else???
source share