struts-config 版本 1.1 中的通配符
我的应用程序使用的是struts 1.1。 我正在尝试使用通配符对 URL 转发进行分组。
例如,如果动作是这样的:
操作路径=“/编辑/产品”类型=“类名”
前进
名称=“成功”
路径=“.myapp.main”
操作
将上面的第一行替换为
操作路径=“/编辑/*”类型=“类名”
不起作用。 是否需要任何其他步骤才能将任何以 /edit/ 开头的 URL 转发到 myapp.main?
编辑: 删除了括号,因为代码没有显示。
My application is using struts 1.1.
I'm trying to group URL forwards, using wildcards.
For example, if the action is like this:
action path="/edit/product" type="classname"
forward
name="success"
path=".myapp.main"
action
Replacing the first line above with
action path="/edit/*" type="classname"
doesn't work. Any other step is required, to forward any URL beginning with /edit/ to myapp.main?
EDIT:
removed the brackets, as the code wasn't showing up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,Struts 不支持这种类型的通配符配置。
To the best of my knowledge Struts does not support this type of wildcard configuration.
laz,确实支持。
我不确定 1.1 版本是否支持。
http://www.oreillynet.com/onjava/blog/2004/ 12/struts_12_offers_cool_new_feat.html
laz, it does support.
I'm not sure if version 1.1 supports though.
http://www.oreillynet.com/onjava/blog/2004/12/struts_12_offers_cool_new_feat.html