如何检查表单字段是否在Spring MVC中只填充了数字

时间:2015-12-02 12:05:49

标签: java spring-mvc annotations

我试过

@Min(value=1)
@Max(value=30)  
private int lunghezza;

如果我用字符串填充表单字段,我会收到此错误:

    Failed to convert property value of type java.lang.String to required
 type int for property lunghezza; nested exception is 
java.lang.NumberFormatException: For input string: "21jkh"

我不明白我是否必须使用其他@Annotation,或者它是否已经有效,我只需在.properties文件中自定义一些消息。

谢谢

0 个答案:

没有答案