I have got simple form (this is the renderend form with values)
<form>
<input id="addrId" type="hidden" value="1,173"/>
</form>
backed by object like this
public class FormObject {
BigDecimal addrId;
//getters and setters
}
On tomcat 7 (debian stable) submitting this form raises an error because Spring doesn't resolve value 1,173 as BigDecimal
value. On Tomcat 6 and on Tomcat 8 ( on different server ) this works normally.
Can I force Spring to render value without the group separator ? Or this may be caused by container or host, JDK setting?