我试过
@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文件中自定义一些消息。
谢谢