I if have a method signature as follows
public void deposit(@RequestParam("accountId") Integer accountId,
@RequestParam("amount") BigDecimal amount) {...}
And because i have a locale specific decimal value which needs to be converted to a BigDecimal, is there some annotation which allows me to set up incoming data such as @Decimal("###.###,##") or something else ???