How we can validate the our jsp form before storing the data in database
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
By using validators. |
|||||||||
|
|
Depends on the framework you are using. If you are developing bare Servlets - you can build your own validator framework (each entity should have a separate class holding validation code for that entity) If you are using some framework (Struts, Spring, etc), you should check their documentation. |
|||
|
|
|
Depending on the validation needed, a better approach might be to validate the data on the client (perhaps using Javascript). It'll save a server-client trip and will provide users with immediate feedback. |
|||||
|