【发布时间】:2013-01-30 15:11:34
【问题描述】:
我正在尝试从 struts-config 调用 struts 1 中的 action forward 属性,并且我想调用另一个操作,它位于另一个 struts.config 文件中。显然它不起作用!
我的代码是:
In "struts-misExpedientes.xml"
<action path="/s99bIrInicio" forward="$$$WEBROOT_ENVIRONMENT$$$/comunJSP/s99binicio.do">
the other xml file is "struts-comun.xml"
<action path="/s99binicio" forward="/s99bIrWelcomeMensajeDia.do" />
注意事项:
"WEBROOT_ENVIRONMENT" 是我在属性文件中声明的变量,其值为 [http://localhost:8100/s99bEnvironmentWar]
感谢您提供的任何想法。
【问题讨论】:
标签: struts-1 forward struts-config struts-action