Hi Philip ,

You can do this my putting validateProperty anotation of every getter of the
property.

for ex:

 @Jpf.ValidatableProperty(validateMaxLength = @Jpf.ValidateMaxLength(chars =
20, messageKey = "error message you can set"), validateMinLength =
@Jpf.ValidateMinLength(messageKey = "errror message you can set ", chars =
5))
public String getUser_id(){
return user_id;
}

You can also get help  from beehive documentation . Hope this will help you.

Regards,
Zuber




On 4/17/08, Philipp Jardas <[EMAIL PROTECTED]> wrote:
>
> Hi everyone,
>
> I hope you might be able to help me with this issue. I want a form
> bean to perform more complex validation than what is possible with the
> property annotations. Think "if property A has the value X then
> property B must not be greater than Y".
>
> In Struts I would simply override the validate method. How do I do
> this in Beehive?
>
> Thanks for your help,
> Philipp
>

Reply via email to