我的应用程序使用的是 struts 1.1。我正在尝试使用通配符对 URL 转发进行分组。
例如,如果动作是这样的:
action path="/edit/product" type="classname"
forward
name="success"
path=".myapp.main"
action
将上面的第一行替换为
action path="/edit/*" type="classname"
不起作用。是否需要任何其他步骤,将任何以 /edit/ 开头的 URL 转发到 myapp.main?
编辑:删除括号,因为代码没有出现。