In an interview my friend was asked to design a validation framework, can any one give me idea how to design a efficient framework
Our approach was an interface having all method and class implementaion of all methods
|
In an interview my friend was asked to design a validation framework, can any one give me idea how to design a efficient framework Our approach was an interface having all method and class implementaion of all methods
| |||||
feedback
|
|
Agree with Peter. Here's a nice introduction to the annotation-based approach using Spring. There's also JSR303 if you're interested. | |||
|
feedback
|
|
I am not sure I understand your approach, it sounds quite vague to me. I would go with an annotation-based approach. Different classes of validations with specific parameters can be defined in an enum, then linked to specific properties via annotations.
At runtime, the annotations can be processed using bean introspection, with I have recently implemented a simple version of this in our own project, but there are several robust examples around (possibly with different implementation), e.g. in Hibernate and Spring. | ||||
|
feedback
|