Struts2 dynamic parameter name in redirect-action(重定向动作中的Struts2动态参数名称)
问题描述
我成功地为我的 struts2 映射文件之一使用了重定向操作,如下所示:
I'm successfully using a redirect-action for one of my struts2 mapping files as follows:
<action name="setAsCurrentCart" class="com.fmp.MyAction">
<result name="success" type="redirect-action">
<param name="actionName">myOtherAction</param>
<param name="foo">${foo}</param>
</result>
<interceptor-ref name="defaultComponentStack"/>
</action>
这就是我想做的事情:
<action name="setAsCurrentCart" class="com.fmp.MyAction">
<result name="success" type="redirect-action">
<param name="actionName">myOtherAction</param>
<param name="${dynamicParameterName}">${dynamicParameterValue}</param>
</result>
<interceptor-ref name="defaultComponentStack"/>
</action>
换句话说,我希望我传递的参数的名称是动态的.有谁知道这是否可能?
In other words, I want the name of the parameter that I'm passing to be dynamic. Does anyone know if this is possible?
推荐答案
其实这样不行.但是,我能够通过以下方式完成这项工作:
Actually, that doesn't work. However, I was able to get this working doing the following:
<action name="setAsCurrentCart" class="com.fmp.MyAction">
<result name="success" type="redirect-action">
<param name="actionName">myOtherAction</param>
<param name="${dynamicParameterName}">${dynamicParameterValue}</param>
</result>
</action>
我只是假设它不会起作用.
I had just assumed it wouldn't work.
这篇关于重定向动作中的Struts2动态参数名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:重定向动作中的Struts2动态参数名称
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01