StrutsPrepareAndExecuteFilter中excludedPatterns变量的用法
Posted on1y_rL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了StrutsPrepareAndExecuteFilter中excludedPatterns变量的用法相关的知识,希望对你有一定的参考价值。
- 这两天在平台中集成webservice时,遇到一个问题。
service的访问地址总是去struts的过滤器StrutsPrepareAndExecuteFilter过滤,然后就报找不到
解决方案:
1.让struts的过滤器不过滤webservice的请求
2.在struts.xml中加上
Java代码- <constant name="struts.action.excludePattern" value="/res/.*,/css/.*,/images/.*,/js/.*,/services/.*" />
这个struts常量的作用就是针对正则表达式所匹配到的路径,
1.struts解析xml时,不会把这些路径放到ActionMapping中;
2.请求时也不用去struts的ActionMapping中进行匹配,执行。
3.而是直接跳过此过滤器进入下一个过滤器。
特别要注意的是:struts.action.excludePattern的值是用逗号(,)隔开的正则表达式。
比如:/res/.* 表示以/res/为开头的路径。
.* 表示零个或多个任意字符
以上是关于StrutsPrepareAndExecuteFilter中excludedPatterns变量的用法的主要内容,如果未能解决你的问题,请参考以下文章