有没有办法在动作类中获取属性值而不使用重定向动作将它们作为查询字符串参数提供?

时间:2014-02-05 12:09:02

标签: java struts2 query-string querystringparameter

POST请求成功时,请求将重定向,如下所示。

private String message; //Getter and setter.

//Required validators.
@Action(value = "AddUpadteCategory",
    results = {
        @Result(name=ActionSupport.SUCCESS, type="redirectAction", params={"namespace", "/admin_side", "actionName", "Category", "currentPage", "${currentPage}", "message", "${message}", "status", "${status}"}),
        @Result(name = ActionSupport.INPUT, location = "Category.jsp")},
    interceptorRefs={
        @InterceptorRef(value="defaultStack", params={"params.acceptParamNames", "catId, catName, currentPage, rowCount, totalPages, status", "validation.validateAnnotatedMethodOnly", "true"})
    })
public String insertOrUpdate()
{
    if(true)  //Some conditional check.
    {
         setMessage(getText("message.key.true"));
    }
    else
    {
          setMessage(getText("message.key.false"));
    }

    return ActionSupport.SUCCESS;
}

如果没有发生验证/转换错误,则此消息作为查询字符串参数提供。

有时,此消息可能很长,形成一个很长的URL字符串。

使用重定向操作时,有没有办法在不将其作为查询字符串参数传递的情况下获取此消息?

将此消息存储到会话中是不可替代的。

1 个答案:

答案 0 :(得分:1)

使用store interceptor并在operationMode上设置AUTOMATIC参数,如下所示:

<action name="actionName" class="..." method="...">
    <interceptor-ref name="store">
        <param name="operationMode">AUTOMATIC</param>
    </interceptor-ref>
    <interceptor-ref name="defaultStack" />
    <result ..../>
</action>

它会自动在适当的范围内设置您的消息。对于redirectAction结果,它将是会话范围,但在显示您的消息后,此拦截器将自动删除它们。

EDIT(注释语法):

 interceptorRefs={
        @InterceptorRef(value="store", params={"operationMode", "AUTOMATIC"}),
        @InterceptorRef(value="defaultStack", params={"params.acceptParamNames", "catId, catName, currentPage, rowCount, totalPages, status", "validation.validateAnnotatedMethodOnly", "true"})
    })