Read Request Parameters with Struts TagLib
It’s very easy to read request parameters with Struts Tag Library, although it took me a while to find this information:
<bean:parameter id=’project’ name="projectNumber"/>
This tag reads the request parameter named projectNumber and saves it in a bean whose id is project.
Use a scriptlet to show the value of the request parameter on the page:
Project Number : <%= project %>
Use the bean:write tag to display the value of session or request attributes on the page:
<bean:write name="attributeName"/>
