快速业务通道

Struts2.1.6--想用通配符,不容易 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-14

Struts2.1.6--想用通配符,不容易

时间:2011-11-09 BlogJava stone2083

初次使用Struts2,老老实实为每个action method配置url mapping文件。

时间长了,难为觉得繁琐,为何不使用COC的方式呢?终于,想到了使用通配符。

查看Struts2 Docs,找到相关配置方法:

<package name="alliance" namespace="/alliance" extends="struts- default">          <action name="*/*" class="cn.zeroall.cow.web.alliance.action.{1}Action"  method="{2}">              <result name="target" type="velocity">/templates/alliance/{1}/ ${target}.vm</result>              <result name="success" type="velocity">/templates/alliance/{1}/ {2}.vm</result>              <result name="input" type="velocity">/templates/alliance/{1}/ {2}.vm</result>              <result name="fail" type="velocity">/templates/common/error.vm</result>          </action> </package>

恩,非常方便,可是启动jetty,发现满足正则的url,就是找不到Action。

无奈,debug代码,找到原因,需要在struts.properties中,配置:

struts.enable.SlashesInActionNames = true

见注释:

### Set this to true if you wish to allow slashes in your action  names.  If false, ### Actions names cannot have slashes, and will be accessible via any  directory ### prefix.  This is the traditional behavior expected of WebWork  applications. ### Setting to true is useful when you want to use wildcards and store  values ### in the URL, to be extracted by wildcard patterns, such as ### <action name="*/*" method="{2}" class="actions.{1}"> to match "/foo/edit"  or ### "/foo/save".

Struts2.1.6--想用通配符,不容易(2)

时间:2011-11-09 BlogJava stone2083

启动,COC终于成功。

但是(又冒出一个但是),针对*/*正则的url mapping,如何做validation呢?

按照struts2的约定,是通过:

[package/]ActionName-${配置中的action name=""中的名字}-validation.xml

如何把"/"这个符号放入到${配置中的action name=""中的名字}呢?

"/"可不是一个合法的文件名。

比如,我要为AlliedMemberAction/doRegister做validation,那么约定的校验文件名应该是:

cn/zeroall/cow/web/alliance/action/AlliedMemberAction-AlliedMember/doRegister- validation.xml

这个特殊符号,可难刹我也。

无奈,继续debug,发现在代码:

xwork框架中的,AnnotationActionValidatorManager:

private  List<ValidatorConfig> buildAliasValidatorConfigs(Class aClass,  String context, boolean checkFile) {          String fileName = aClass.getName().replace(''.'', ''/'') + "-" +  context + VALIDATION_CONFIG_SUFFIX;          return loadFile(fileName, aClass, checkFile); }

这个context就是action name=""中的url表达式。

思想斗争后,由于我不喜欢使用*-*的pattern,更喜欢使用*/*pattern,只好修改了源码:

private  List<ValidatorConfig> buildAliasValidatorConfigs(Class aClass,  String context, boolean checkFile) {          String fileName = aClass.getName().replace(''.'', ''/'') + "-" +  context.replace("/", "-") + VALIDATION_CONFIG_SUFFIX;          return loadFile(fileName, aClass, checkFile); }

将context中的“/”变成"-"解决这个问题。

不清楚struts2官方怎么看待这个问题。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号