//Entity
public class MyEntity {
private Double amount;
public Double getAmount() { return this.amount; }
public void setAmount(Double value) { this.amount = value; }
}
//Controller
@RequestMapping(value="/save")
public void save(MyEntity a) {
//save to db
}
//
<input name="amount" value="1,252.00" />
When I summit form it's keep return 400 - Bad Request
.. and I find out it's because spring unable to convert formatted number to Double. How to convert request before set into MyEntity