Can't get request attribute in struts action class
问题 I have a jsp page. I am calling the jsp page in a iframe and appending new parameter to the url. The usrl looks like http:\localhost:8080\Search.pp?blah=true; So when as the search page called has got some filters so in the action class i have code like this String Parameter = request.getParameter(blah); if (StringUtils.isNotEmpty(Parameter)) { Search = Boolean.parseBoolean(campaignSearchParameter); } and then in the jsp page i do something like final Boolean Search = (Boolean) request