validation « Parameter « JSP-Servlet Q&A





1. What is the best practice for validating parameters in JSP?    stackoverflow.com

I'm implementing a JSP which expects a few parameters which have to be validated before running the jsp.

  1. Suggestion: Validate the parameters inside the JSP using Taglibraries
  2. Suggestion: Pre-parse the Parameters in a Filter
What ...