DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
How To Get A Parameter From The RequestContext In Spring
// How to get a parameter from the org.springframework.webflow.execution.RequestContext in Spring framework
// Java:
String myParameter = context.getExternalContext().getRequestParameterMap().get("myParameterPath");
// JSP:
<form:select path="myParameterPath" id="myParameterId">
...
</form:select>
// HTML rendered as:
<select name="myParameterPath" id="myParameterId"> ... </select>





