vote up 0 vote down star
1

I once came across a validation framework for java, where you wrote one method that protected the integrity of the data-type and any CRUD operations on that data-type automatically called this method.

Does anyone know what this framework is?

flag

You need to be more specific. Do you mean for web platform? or for RCP? – Vinegar Dec 30 at 2:38

3 Answers

vote up 2 vote down check

Don't know.

Apache Commons has a validation framework.

link|flag
vote up 2 vote down

Spring has a very nice validation and binding API.

link|flag
vote up 0 vote down

Thanks Guys. Sorry I have been very vague.

I simply want to avoid repetitive validation on every CRUD method attached to a data-type.

link|flag
I'm still do not understand what exactly you want to validate? Could you explain on a real example? – gedevan Dec 30 at 9:04
I think he wants something like value ranges and/or specific String patterns but I fail to see why there would be a specific framework this...maybe then it would make sense if the framework would specify that only object A can edit object B's field "c"? – Esko Dec 30 at 9:19
The main idea as I always thought is to validate data values before CRUD operations. In this case I prefer making all the validations in the layer on top of DAO. – gedevan Dec 30 at 9:34
Sure I want to validate value ranges and business logic. For instance a person cannot be a male and pregnant etc. I want to validate in the middle-layer, above the DAO layer. I don't specifically need to use a framework, but it would be helpful. – bowsie Dec 30 at 12:36
Is it a web app? Are you already using any framework for your application? – Vinegar Dec 31 at 7:36
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.