我想在执行一个动作之后在URL中附加一个参数,即在拦截器中。
我该怎么做?
下面,struts.xml中
<action name="reviewpolist" class="purchaseOrderAction" method="getReviewPOList">
<result name="success">reviewpolist.jsp </result>
</action>
我当前的网址是 -
localhost":8080/FLO_OSIII/po/jsp/reviewpolist.action?s=185366951
现在我想将参数GetFlg=1
添加到URl,比如
localhost:8080/FLO_OSIII/po/jsp/reviewpolist.action?s=185366951&GetFlg=1
行动执行后行动 -
public String getreviewpolist()throws Throwable{
// here my processing code.
return SUCCESS;
}