Re: How to invoke annotation validation manually

2009-05-11 Thread joea88
ons then IMO > annotations aren't the best way to do it, particularly if you have a > bunch of different methods that require different validation logic. > > Dave > > > - > To unsubscribe, e-mail: user-u

Re: How to invoke annotation validation manually

2009-05-11 Thread Dave Newton
joea88 wrote: I've an action class like below. I put the skipvalidation annotation because I don't want strut to validate all annotated fields. My problem is that I still want to do the validation for 'name' field. So.. is there a way to manually invoke only certain fields' annotation validati

How to invoke annotation validation manually

2009-05-10 Thread joea88
ription") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } } Thanks, Joe -- View this message in context: http://www.nabble.com/How-to-invoke-a