2

我目前正在转换一个 Struts 2 应用程序以使用 Convention 插件和 Annotations 而不是 XML 配置。

原始 XML 如下所示:

    <action name="store" method="store"
        class="com.company.webapp.dop.AuthorAction">
        <result name="success" type="redirectAction">list</result>
        <result name="input" type="tiles">.author.edit
        </result>
        <interceptor-ref name="store">
            <param name="operationMode">STORE</param>
        </interceptor-ref>
        <interceptor-ref name="defaultStack" />
    </action>

我已经替换为

@Action(value="store", interceptorRefs=@InterceptorRef("store"))
public String store() throws Exception
{
    ....
}

但我不确定如何将参数传递给消息存储拦截器。有什么想法吗?

4

1 回答 1

3

http://www.jarvana.com/jarvana/view/org/apache/struts/struts2-convention-plugin/2.1.8/struts2-convention-plugin-2.1.8-javadoc.jar阅读 Javadoc 之后!/ index.html ,答案是执行以下操作:

@Action(value = "store", interceptorRefs = {@InterceptorRef(value = "store", params = {"operationMode", "STORE"})})
于 2009-12-29T10:20:19.170 回答