0

我的应用程序使用的是 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?

编辑:删除括号,因为代码没有出现。

4

2 回答 2

1

据我所知,Struts 不支持这种类型的通配符配置。

于 2008-10-22T18:58:29.613 回答
0

laz,确实支持。我不确定 1.1 版是否支持。

http://www.oreillynet.com/onjava/blog/2004/12/struts_12_offers_cool_new_feat.html

于 2008-10-22T19:13:37.977 回答