我在Struts中编写了一个Interceptor,在xwork.xml文件中添加了它:它被正确调用,到目前为止,它记录了ServletRequest的POST参数。
它应该访问ServletRequest的POST参数,如果找不到则添加三个新参数。我怎样才能做到这一点?
public class MyInterceptor extends Interceptor {
public String intercept(ActionInvocation invocation) throws Exception {
// Here I want to set the parameters of the ServletRequest
}
}