Every project that we do, there are always some common requirement, that project must need to implement.
So one of the common requirement i want to discuss here is...
"duplicate form request submission"
In any project duplicate form request must be intercept and must be aborted, to avoid duplicate data or inconsistency.
In J2EE environment, we can achieve this functionality by using following resources-
- Using Filter Class
- Using Controller Class(Servlet)
Presentation Tier Component (JSPs)
-
insertstudent.jsp
-
success.jsp
-
error.jsp
Controller Component (Filter)
-
DuplicateRequestInterceptor.class
-
StudentInsertServlet.class
Entries in Deployment Descriptor(web.xml)
-
web.xml
No comments:
Post a Comment