I have one client that post into my service currency just like this:
{
"id": 1,
"amount": "12.323,44"
}
how can configure my springboot to convert this in a java money field? this is my object
public class MyObject {
private Long id;
private Money amount;
}