我正在使用 Spring MVC 2.5,对于我的模型/bean 类,目前我使用服务器端验证。我想做的验证之一是检查某些输入是否不是数字(0-9)。用户可以输入非数字字符,例如“abcd”而不是“1234”。
我有一个@Pattern
只接受正 BigDecimal (它代表美元金额)。
public class OfferSettingBean implements Serializable {
private static final String NUMBER_WITH_DECIMAL_PLACES_ONLY="^\\d+([.]\\d+)?$";
//org.hibernate.validator.pattern
@Pattern(regex = NUMBER_WITH_DECIMAL_PLACES_ONLY, message = "invalid.amount")
private BigDecimal offerSize;
//the rest of the code goes here including setter and getter methods
}
jsp页面
<input type="text" name="offerSize" id="offerSize" value="${offerSetting.offerSize}" placeholder="$" />
我的代码的问题是,如果用户输入像“asdfsd”这样的非数字字符,它甚至没有达到应该检查模式的程度。
Failed to convert property value of type [java.lang.String] to required type [java.math.BigDecimal] for property offerSize; nested exception is java.lang.NumberFormatException
我认为问题在于在检查将字符串值绑定到 BigDecimal 的模式之前,它会失败。
一个丑陋的解决方案可能是在 offerSize setter 方法中,我可以检查即将到来的值并在它不是数字时做一些事情。但我不喜欢那个。
处理此类绑定问题的更好方法是什么?
仅供参考:我知道稍后我将进行客户端验证(使用 JQuery)。现在,我假设用户以某种方式通过了客户端验证。