I found the @ConversionErrorFieldValidator and it works almost the way I
wanted.
Now I get my error message but I also get the default struts error message
which is: Invalid field value for field "<field-name>".
Is there any "simple" way I can get rid of the default message from struts?
Thanks


nguyenlinh wrote:
> 
> Hello,
> I have the same problem. So what kind of validator should I use if I have
> a field of type int and I want to make sure the user typed a number?
> Thanks,
> Linh
> 
> 
> Greg Lindholm-2 wrote:
>> 
>> You may have a different problem then you think;
>> 
>> The @RequiredFieldValidator does not make any sense on a int
>> (primitive) field as an int cannot be null. The validation interceptor
>> checks the values on the fields after params interceptor sets the
>> fields. The RequiredFieldValidator checks if the field is null which
>> will never be the case for a primitive field.
>> 
>> 
> 
> 

-- 
View this message in context: 
http://old.nabble.com/RequiredFieldValidator-and-error-message-from-property-file-via-key-tp26640581p26669331.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to