我记得,我从某个地方读过了这句话,但至今仍然不知。
审议以下设想:
<action name="doSomething" class="com.domain.MyAction" method="myMethod">
</action>
以及
public class MyAction extends ActionSupport{
public String myMethod(){
private String param;
}
//getter
//setter
}
然后通过网页I:POST o GET: area/doSomething?param=hello
。
我能够使用以下任何方法收回“半”价值,无论这些方法是否相同?
this.getParam();
(String)request.getParameter("param");
(String)request.getSession.getAttribute("param");
如果是的话,那么入侵者将总是将申请参数纳入http://_session?