Annotation中Result的params属性

这个属性只有在重定向时有用,而转发时不会设置参数。

 

如:

@Results({
    @Result(name="success", location="page", type="redirect", params={"content", "article"})
})

代码中选择类型redirect,页面将会重定向至PageAction,而且这个Action中的content属性则会被设置为article。

但是如果type为chain,那么PageAction的content属性为null

posted @ 2013-10-14 23:42  -六月飞雪-  阅读(757)  评论(0编辑  收藏  举报