我知道Struts 2使用param拦截器将请求参数自动映射到动作类字段。但是,如果我想将参数映射到具有不同名称的操作字段,该怎么办?假设我有

<input type="text" name="username">

如果我想将此映射到以下字段
private String realName;
public String getRealName() {
return realName;
}

public void setRealName(String realName) {
      this.realNaame = realName;
}

我该如何进行映射。我可以用吗
realName = request.getParameter("username");

如果是这样,如何在操作类中获取请求对象?它也可以在带有OGNL表达式usernamerealName的JSP页面中使用吗?在struts2配置中还有其他方法可以进行这种映射吗?

最佳答案

简而言之,使用alias interceptor:

<action name="someAction" class="com.examples.SomeAction">
    <!-- The value for the foo parameter will be applied as if it were named bar -->
    <param name="aliases">#{ 'foo' : 'bar' }</param>

    <interceptor-ref name="alias"/>
    <interceptor-ref name="defaultStack"/>
    <result>result.jsp</result>
</action>

10-01 03:41